mirror of
https://github.com/google/cpu_features.git
synced 2025-04-28 15:33:37 +02:00

* scripts: Fix shellcheck * script: Bump qemu 5.2.0 -> 7.1.0 * scripts: add bootlin aarch64 toolchains * scripts: Add PowerPC bootlin toolchain * scripts: cleanup linaro toolchains * scripts: cleanup codespace * cmake(ci): Add aarch64 bootlin support * cmake(ci): Add PowerPC bootlin support * ci: Add aarch64 bootlin jobs * ci: Add PowerPC bootlin jobs * Remove conflict with compiler generated preprocessor Co-authored-by: Guillaume Chatelet <gchatelet@google.com>
31 lines
658 B
YAML
31 lines
658 B
YAML
name: AArch64 Linux CMake
|
|
|
|
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.
|
|
make:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
targets: [
|
|
[aarch64],
|
|
[aarch64be],
|
|
[aarch64-linux-gnu],
|
|
[aarch64_be-linux-gnu]
|
|
]
|
|
fail-fast: false
|
|
env:
|
|
TARGET: ${{ matrix.targets[0] }}
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Build
|
|
run: make --directory=cmake/ci ${TARGET}_build
|
|
- name: Test
|
|
run: make --directory=cmake/ci ${TARGET}_test
|