1
0
mirror of https://github.com/google/cpu_features.git synced 2025-04-28 15:33:37 +02:00
cpu_features/.github/workflows/amd64_linux_bazel.yml
tinyboxvk 3db721edf9
Bump actions/checkout to v4 (#371)
Signed-off-by: tinyboxvk <viruskiller@protonmail.com>
2024-11-12 14:08:10 +01:00

27 lines
622 B
YAML

name: amd64 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@v2
- name: Check docker
run: |
docker info
docker buildx ls
- name: Build
run: make --directory=bazel/ci amd64_build
- name: Test
run: make --directory=bazel/ci amd64_test