Add instructions for installing cmake, ninja, and zstd to build OCLint to README #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build and Tests on AArch64 | |
on: | |
pull_request: | |
schedule: | |
- cron: '0 15 * * 0' | |
jobs: | |
job: | |
strategy: | |
fail-fast: false | |
matrix: | |
module_args: | |
- test core | |
- test metrics | |
- test rules core metrics | |
- test reporters core | |
- test driver core | |
- build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- run: docker run --rm --privileged multiarch/qemu-user-static:register --reset | |
- run: docker build --rm -t g_a_ci -f oclint-scripts/Dockerfiles/Dockerfile-aarch64-ubuntu-focal . | |
- env: | |
MODULE_ARGS: ${{ matrix.module_args }} | |
run: docker run --name g_a_ci_job -t g_a_ci bash -c "cd oclint-scripts && ./gh-actions ${MODULE_ARGS}" |