Skip to content

Use the C4A machine type for Linux Arm64 builds #28591

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .github/workflows/wheel_tests_continuous.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ permissions:
contents: read

on:
# Add a pull request for testing
pull_request:
branches:
- main
schedule:
- cron: "0 */3 * * *" # Run once every 3 hours
workflow_dispatch: # allows triggering the workflow run manually
Expand Down Expand Up @@ -145,7 +149,7 @@ jobs:
strategy:
fail-fast: false # don't cancel all jobs on failure
matrix:
runner: ["linux-x86-n2-16", "linux-arm64-t2a-48"]
runner: ["linux-x86-n2-16", "linux-arm64-c4a-64"]
python: ["3.10",]
enable-x64: [1, 0]
name: "Bazel CPU tests with ${{ format('{0}', 'py_import') }}"
Expand Down
1 change: 1 addition & 0 deletions ci/run_bazel_test_cpu_py_import_rbe.sh
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ if [[ $os == "darwin" ]] || ( [[ $os == "linux" ]] && [[ $arch == "aarch64" ]] )
--action_env=JAX_ENABLE_X64="$JAXCI_ENABLE_X64" \
--test_output=errors \
--color=yes \
--test_timeout=500 \
--strategy=TestRunner=local \
--//jax:build_jaxlib=wheel \
--//jax:build_jax=wheel \
Expand Down
Loading