mirror of
https://codeberg.org/anoncontributorxmr/monero.git
synced 2025-04-29 13:29:26 -04:00
ci: add arch linux build
This commit is contained in:
parent
70afa6b7bc
commit
f97fef1e95
1 changed files with 19 additions and 0 deletions
19
.github/workflows/build.yml
vendored
19
.github/workflows/build.yml
vendored
|
@ -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'
|
||||
|
|
Loading…
Add table
Reference in a new issue