ci: add arch linux build

This commit is contained in:
tobtoht 2025-01-04 15:20:43 +01:00
parent a4a4a1df1d
commit 0bbac40e55
No known key found for this signature in database
GPG Key ID: E45B10DD027D2472

View File

@ -78,6 +78,22 @@ jobs:
${{env.CCACHE_SETTINGS}} ${{env.CCACHE_SETTINGS}}
make release-static-win64 -j4 make release-static-win64 -j4
build-arch:
name: 'Arch Linux'
runs-on: ubuntu-latest
container:
image: archlinux:latest
steps:
- name: install dependencies
run: pacman -Syyu --noconfirm base-devel git cmake boost openssl zeromq unbound libsodium readline expat gtest python3 doxygen graphviz hidapi libusb protobuf
- name: configure git
run: git config --global --add safe.directory '*'
- uses: actions/checkout@v4
with:
submodules: recursive
- name: build
run: ${{env.BUILD_DEFAULT_LINUX}}
build-debian: build-debian:
name: 'Debian 10' name: 'Debian 10'
runs-on: ubuntu-latest runs-on: ubuntu-latest