From 0bbac40e55ef6dd76e94a1ca1ba67b82f0b6cdf8 Mon Sep 17 00:00:00 2001 From: tobtoht Date: Sat, 4 Jan 2025 15:20:43 +0100 Subject: [PATCH] ci: add arch linux build --- .github/workflows/build.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6d9794b01..04a5610d8 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -78,6 +78,22 @@ jobs: ${{env.CCACHE_SETTINGS}} 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: name: 'Debian 10' runs-on: ubuntu-latest