More GitHub builds #24
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 on ArchLinux | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
container: | |
image: archlinux:latest | |
strategy: | |
fail-fast: false | |
steps: | |
- name: Install requirements | |
run: | | |
pacman -Sy --noconfirm \ | |
base-devel \ | |
git \ | |
wget \ | |
catch2 \ | |
ccache \ | |
cmake \ | |
ninja \ | |
python \ | |
qt6-base \ | |
qt6-multimedia \ | |
opencv \ | |
exiv2 | |
- name: Build AUR requirements | |
run: | | |
chsh -s /bin/bash nobody && \ | |
mkdir aur && \ | |
pushd aur && \ | |
mkdir -m777 cs-libguarded && \ | |
pushd cs-libguarded && \ | |
wget https://aur.archlinux.org/cgit/aur.git/plain/PKGBUILD?h=cs-libguarded -O PKGBUILD && \ | |
su nobody -c makepkg && \ | |
pacman -U *.pkg.tar.* && \ | |
popd && \ | |
popd | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Setup ccache | |
uses: hendrikmuhs/ccache-action@v1.2 | |
with: | |
key: ${{ github.job }}-${{ matrix.compiler.compiler }} | |
- name: Build | |
uses: ashutoshvarma/action-cmake-build@master | |
with: | |
build-dir: ${{ runner.workspace }}/build | |
configure-options: | |
-DCMAKE_C_COMPILER_LAUNCHER=ccache | |
-DCMAKE_CXX_COMPILER_LAUNCHER=ccache | |
-Wdev -Werror=dev | |
-G Ninja | |
run-test: true | |
ctest-options: | |
--output-on-failure | |
--repeat until-fail:5 | |
env: | |
TSAN_OPTIONS=suppressions: ${{ runner.workspace }}/photobroom/sanitizer-thread-suppressions.txt |