Skip to content

Commit

Permalink
ci(testing): stop Bazel testing on arm64
Browse files Browse the repository at this point in the history
  • Loading branch information
mvprowess committed Sep 24, 2024
1 parent 7ed65fe commit f93b4c8
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/testing.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
arch: [amd64, arm64]
runs-on: ${{ matrix.os }}
env:
CACHE_PATH: ${{ matrix.os == 'macos-latest' && '/private/var/tmp/_bazel_runner/' || '~/.cache/bazel' }}
Expand Down Expand Up @@ -62,11 +61,11 @@ jobs:
- name: Build Bazel artifacts
run: |
bazel --output_user_root=${{ env.CACHE_PATH }} build --platforms=${{ steps.platform.outputs.platform }} //...
bazel --output_user_root=${{ env.CACHE_PATH }} build //...
- name: Test Bazel artifacts
run: |
bazel --output_user_root=${{ env.CACHE_PATH }} test --platforms=${{ steps.platform.outputs.platform }} //...
bazel --output_user_root=${{ env.CACHE_PATH }} test //...
# Fail here if tests didn't succeed
- name: Generate Release artifacts
Expand Down

0 comments on commit f93b4c8

Please sign in to comment.