Skip to content

Commit

Permalink
Add missing Evergreen-arm64 builds (#470)
Browse files Browse the repository at this point in the history
* Add missing Evergreen-arm64 builds

* Also fix another leak for arm64

b/284372331
  • Loading branch information
kaidokert committed May 26, 2023
1 parent ef3dcd1 commit e6dc1db
Show file tree
Hide file tree
Showing 3 changed files with 53 additions and 1 deletion.
42 changes: 42 additions & 0 deletions .github/config/evergreen-arm64.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
{
"docker_service": "build-evergreen",
"platforms": [
"evergreen-arm64",
"evergreen-arm64-sbversion-15",
"evergreen-arm64-sbversion-14",
"evergreen-arm64-sbversion-13"
],
"includes": [
{
"name":"arm64",
"platform":"evergreen-arm64",
"target_platform":"evergreen-arm64",
"target_cpu":"target_cpu=\\\"arm64\\\"",
"extra_gn_arguments":"use_asan=false"
},
{
"name":"sbversion-15",
"platform":"evergreen-arm64-sbversion-15",
"target_platform":"evergreen-arm64",
"target_cpu":"target_cpu=\\\"arm64\\\"",
"extra_gn_arguments":"use_asan=false",
"sb_api_version":"sb_api_version=15"
},
{
"name":"sbversion-14",
"platform":"evergreen-arm64-sbversion-14",
"target_platform":"evergreen-arm64",
"target_cpu":"target_cpu=\\\"arm64\\\"",
"extra_gn_arguments":"use_asan=false",
"sb_api_version":"sb_api_version=14"
},
{
"name":"sbversion-13",
"platform":"evergreen-arm64-sbversion-13",
"target_platform":"evergreen-arm64",
"target_cpu":"target_cpu=\\\"arm64\\\"",
"extra_gn_arguments":"use_asan=false",
"sb_api_version":"sb_api_version=13"
}
]
}
9 changes: 9 additions & 0 deletions .github/workflows/evergreen.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,15 @@ jobs:
platform: evergreen-arm-softfp
nightly: ${{ github.event.inputs.nightly }}
run_api_leak_detector: true
evergreen-arm64:
uses: ./.github/workflows/main.yaml
permissions:
packages: write
pull-requests: write
with:
platform: evergreen-arm64
nightly: ${{ github.event.inputs.nightly }}
run_api_leak_detector: true
evergreen-x86:
uses: ./.github/workflows/main.yaml
permissions:
Expand Down
3 changes: 2 additions & 1 deletion third_party/llvm-project/compiler-rt/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -74,9 +74,10 @@ static_library("compiler_rt") {
"lib/builtins/extendsftf2.c",
"lib/builtins/fixtfsi.c",
"lib/builtins/floatsitf.c",
"lib/builtins/floatunditf.c",
"lib/builtins/floatunsitf.c",
"lib/builtins/riscv/fp_mode.c",
"lib/builtins/multf3.c",
"lib/builtins/riscv/fp_mode.c",
"lib/builtins/subtf3.c",
"lib/builtins/trunctfdf2.c",
"lib/builtins/trunctfsf2.c",
Expand Down

0 comments on commit e6dc1db

Please sign in to comment.