1
0
mirror of https://github.com/google/cpu_features.git synced 2025-05-01 00:33:36 +02:00
cpu_features/.github/workflows/aarch64_linux_bazel.yml
2023-08-30 13:19:47 +02:00

24 lines
658 B
YAML

name: AArch64 Linux Bazel
on:
push:
pull_request:
schedule:
# min hours day(month) month day(week)
- cron: '0 0 7,22 * *'
jobs:
# Building using the github runner environement directly.
bazel:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v2
- name: Install Bazel through bazelisk
run: |
wget https://github.com/bazelbuild/bazelisk/releases/download/v1.18.0/bazelisk-linux-arm64
chmod +x bazelisk-linux-arm64
./bazelisk-linux-arm64 --version
- name: Test
run: ./bazelisk-linux-arm64 test -s --verbose_failures //...