Skip to content

Commit

Permalink
Limit some buildkite jobs to run on only x86_64 machines (#45665)
Browse files Browse the repository at this point in the history
This should fix the `Exec format error` problems we've had recently due to us adding some non-x86_64 linux workers to the pool.
  • Loading branch information
staticfloat authored and KristofferC committed Jul 4, 2022
1 parent 038c949 commit 7989b16
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions .buildkite/pipelines/main/misc/doctest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ agents:
# Only run on `sandbox.jl` machines (not `docker`-isolated ones) since we need nestable sandboxing
sandbox.jl: "true"
os: "linux"
arch: "x86_64"
steps:
- label: "doctest"
key: doctest
Expand Down
1 change: 1 addition & 0 deletions .buildkite/pipelines/main/misc/embedding.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ agents:
# Only run on `sandbox.jl` machines (not `docker`-isolated ones) since we need nestable sandboxing
sandbox.jl: "true"
os: "linux"
arch: "x86_64"
steps:
- label: "embedding"
key: "embedding"
Expand Down
1 change: 1 addition & 0 deletions .buildkite/pipelines/main/misc/llvmpasses.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ agents:
# Only run on `sandbox.jl` machines (not `docker`-isolated ones) since we need nestable sandboxing
sandbox.jl: "true"
os: "linux"
arch: "x86_64"
steps:
- label: "analyzegc"
key: "analyzegc"
Expand Down
1 change: 1 addition & 0 deletions .buildkite/pipelines/main/misc/sanitizers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ agents:
# Only run on `sandbox.jl` machines (not `docker`-isolated ones) since we need nestable sandboxing
sandbox.jl: "true"
os: "linux"
arch: "x86_64"
steps:
- label: "asan"
key: "asan"
Expand Down
1 change: 1 addition & 0 deletions .buildkite/pipelines/main/misc/whitespace.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ agents:
# Only run on `sandbox.jl` machines (not `docker`-isolated ones) since we need nestable sandboxing
sandbox.jl: "true"
os: "linux"
arch: "x86_64"
steps:
- label: "whitespace"
key: "whitespace"
Expand Down
1 change: 1 addition & 0 deletions .buildkite/pipelines/main/platforms/package_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ agents:
# Only run on `sandbox.jl` machines (not `docker`-isolated ones) since we need nestable sandboxing
sandbox.jl: "true"
os: "linux"
arch: "x86_64"
steps:
- label: "package_${PLATFORM?}${LABEL?}"
key: package_${PLATFORM?}${LABEL?}
Expand Down
1 change: 1 addition & 0 deletions .buildkite/pipelines/main/platforms/tester_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ agents:
# Only run on `sandbox.jl` machines (not `docker`-isolated ones) since we need nestable sandboxing
sandbox.jl: "true"
os: "linux"
arch: "x86_64"
steps:
- label: "tester_${PLATFORM?}${LABEL?}"
key: tester_${PLATFORM?}${LABEL?}
Expand Down

0 comments on commit 7989b16

Please sign in to comment.