1
0
mirror of https://github.com/google/cpu_features.git synced 2025-07-03 14:13:18 +02:00

ci(github): Add workflows

This commit is contained in:
Corentin Le Molgat
2021-10-25 11:38:20 +02:00
committed by Mizux
parent 440452e9a3
commit d4252660a2
7 changed files with 189 additions and 1 deletions

32
.github/workflows/aarch64_linux.yml vendored Normal file
View File

@ -0,0 +1,32 @@
name: aarch64 Linux
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.
aarch64:
runs-on: ubuntu-latest
strategy:
matrix:
targets: [
[aarch64-linux-gnu],
[aarch64_be-linux-gnu]
]
fail-fast: false
env:
TARGET: ${{ matrix.targets[0] }}
steps:
- uses: actions/checkout@v2
- name: Install Ninja
run: |
sudo apt-get update
sudo apt-get install ninja-build
- name: Build
run: ./scripts/run_integration.sh build
- name: Test
run: ./scripts/run_integration.sh test