mirror of
https://github.com/google/cpu_features.git
synced 2025-04-27 15:12:30 +02:00
![dependabot[bot]](/assets/img/avatar_default.png)
Bumps the github-actions group with 1 update: [docker/setup-qemu-action](https://github.com/docker/setup-qemu-action). Updates `docker/setup-qemu-action` from 2 to 3 - [Release notes](https://github.com/docker/setup-qemu-action/releases) - [Commits](https://github.com/docker/setup-qemu-action/compare/v2...v3) --- updated-dependencies: - dependency-name: docker/setup-qemu-action dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
27 lines
624 B
YAML
27 lines
624 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@v4
|
|
- name: Set up QEMU
|
|
uses: docker/setup-qemu-action@v3
|
|
- name: Check docker
|
|
run: |
|
|
docker info
|
|
docker buildx ls
|
|
- name: Build
|
|
run: make --directory=bazel/ci arm64_build
|
|
- name: Test
|
|
run: make --directory=bazel/ci arm64_test
|