aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/aarch64_linux_bazel.yml
blob: 72dbfff2409a82e4e82b8bce2fc91b896aadca53 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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@v3
      - 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 arm64_build
      - name: Test
        run: make --directory=bazel/ci arm64_test