aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authortobtoht <tob@featherwallet.org>2025-02-14 07:38:41 +0100
committertobtoht <tob@featherwallet.org>2025-02-15 05:49:18 +0100
commitf97fef1e9545416696024c7d27077eb80d24168b (patch)
tree80612a6e78da1a1192e42213fb77a24f492a0209 /.github
parent70afa6b7bcdea59ec3eec446f6bf39d24174f3c5 (diff)
downloadmonzero-core-f97fef1e9545416696024c7d27077eb80d24168b.tar.gz
monzero-core-f97fef1e9545416696024c7d27077eb80d24168b.tar.xz
monzero-core-f97fef1e9545416696024c7d27077eb80d24168b.zip
ci: add arch linux build
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build.yml19
1 files changed, 19 insertions, 0 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 29926e23d..e19ea4bce 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -87,6 +87,25 @@ jobs:
${{env.CCACHE_SETTINGS}}
make release-static-win64 -j${{env.MAKE_JOB_COUNT}}
+ 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
+ - uses: ./.github/actions/set-make-job-count
+ - name: build
+ env:
+ CMAKE_BUILD_PARALLEL_LEVEL: ${{env.MAKE_JOB_COUNT}}
+ run: ${{env.BUILD_DEFAULT_LINUX}}
+
build-debian:
# Oldest supported Debian version
name: 'Debian 10'