Skip to content

More GitHub builds

More GitHub builds #20

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 \
git \
wget \
ccache \
cmake \
ninja \
gcc \
python \
qt6-base \
qt6-multimedia \
opencv \
exiv2
- name: Build AUR requirements
run: |
mkdir aur && \
pushd aur && \
mkdir 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