-
Notifications
You must be signed in to change notification settings - Fork 84
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
19 changed files
with
543 additions
and
102 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
on: [push, pull_request] | ||
|
||
jobs: | ||
build_job: | ||
# The host should always be linux | ||
runs-on: ubuntu-20.04 | ||
name: Build on ${{ matrix.distro }} ${{ matrix.arch }} | ||
|
||
strategy: | ||
matrix: | ||
include: | ||
- arch: aarch64 | ||
distro: bullseye | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- uses: uraimo/run-on-arch-action@v2 | ||
name: Build artifact | ||
id: build | ||
with: | ||
arch: ${{ matrix.arch }} | ||
distro: ${{ matrix.distro }} | ||
|
||
# Not required, but speeds up builds | ||
githubToken: ${{ github.token }} | ||
|
||
install: | | ||
case "${{ matrix.distro }}" in | ||
ubuntu*|jessie|stretch|buster|bullseye) | ||
apt-get update -q -y | ||
apt-get install -q -y cmake gcc g++ libssl-dev ninja-build | ||
;; | ||
esac | ||
run: | | ||
cmake -G Ninja -B build -DCMAKE_C_FLAGS="-Werror" | ||
cmake --build build -j --target retest | ||
./build/test/retest -r -v |
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
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
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
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
Oops, something went wrong.