[infra] Add configurations to migrate Linux ARM64 to NNBD.

Change-Id: Iafe32528a4516817d6770e5e87686c97bd58da8e
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/285160
Reviewed-by: Alexander Thomas <athom@google.com>
Commit-Queue: Ryan Macnak <rmacnak@google.com>
This commit is contained in:
Ryan Macnak 2023-02-27 18:40:28 +00:00 committed by Commit Queue
parent 7424295ce9
commit 1d0146984c

View file

@ -2251,6 +2251,58 @@
}
]
},
{
"builders": [
"vm-linux-release-arm64"
],
"meta": {
"description": "This configuration is for the ARM64 JIT builders."
},
"steps": [
{
"name": "build dart",
"script": "tools/build.py",
"arguments": [
"runtime"
]
},
{
"name": "vm tests",
"arguments": [
"-nvm-${system}-${mode}-${arch}"
],
"fileset": "vm-kernel",
"shards": 1
}
]
},
{
"builders": [
"vm-aot-linux-release-arm64"
],
"meta": {
"description": "This configuration is for the ARM64 AOT builders."
},
"steps": [
{
"name": "build dart",
"script": "tools/build.py",
"arguments": [
"dart_precompiled_runtime",
"gen_snapshot",
"runtime"
]
},
{
"name": "vm tests",
"arguments": [
"-nvm-aot-${system}-${mode}-${arch}"
],
"fileset": "vm-kernel",
"shards": 1
}
]
},
{
"builders": [
"cross-vm-linux-release-arm64"