Skip to content

Commit

Permalink
Add a builder for aarch64 under gcc-13 in addition to clang-18 (helps…
Browse files Browse the repository at this point in the history
… address #7489)

PiperOrigin-RevId: 698542183
  • Loading branch information
xnnpack-bot committed Nov 20, 2024
1 parent e297edd commit 01c82d0
Showing 1 changed file with 52 additions and 1 deletion.
53 changes: 52 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -416,7 +416,7 @@ jobs:
with:
path: "/home/runner/.cache/bazel"
key: ${{ github.job }}-${{ github.sha }}
bazel-linux-aarch64:
bazel-linux-aarch64-clang-18:
runs-on: arm-ubuntu-arm-22.04-4core
timeout-minutes: 60
steps:
Expand Down Expand Up @@ -468,3 +468,54 @@ jobs:
with:
path: "/home/runner/.cache/bazel"
key: ${{ github.job }}-${{ github.sha }}
bazel-linux-aarch64-gcc13:
# This ensures we have solid test coverage for _Float16
runs-on: arm-ubuntu-arm-22.04-4core
timeout-minutes: 60
steps:
- uses: actions/checkout@v4
- name: Update apt
run: sudo apt update
- name: Install gcc-13
working-directory: ${{ github.workspace }}
run: |
sudo apt install gcc-13 g++-13
- name: Restore bazel cache
uses: actions/cache/restore@v4
with:
path: "/home/runner/.cache/bazel"
key: ${{ github.job }}
restore-keys: |
${{ github.job }}-
- name: Build tests
env:
CC: gcc-13
CXX: g++-13
run: |
bazel build test:all
working-directory: ${{ github.workspace }}
- name: Run tests
if: ${{ inputs.run-tests }}
env:
CC: gcc-13
CXX: g++-13
run: |
# We only test the KleidiAI integration for now.
bazel test \
--test_output=all \
--test_filter=*QP8* \
test:qp8_f32_qc4w_gemm_minmax_test \
test:fully_connected_nc_test \
test:fully_connected_test
working-directory: ${{ github.workspace }}
- name: Compress disk cache
# Bazel's `--disk-cache` currently grows without bounds, so we remove files
# that haven't been accessed in 7+ days manually.
if: ${{ inputs.update-caches }}
run: find $HOME/.cache/bazel -type f -atime +7 -delete
- name: Save bazel cache
if: ${{ inputs.update-caches }}
uses: actions/cache/save@v4
with:
path: "/home/runner/.cache/bazel"
key: ${{ github.job }}-${{ github.sha }}

0 comments on commit 01c82d0

Please sign in to comment.