Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions .github/workflows/openbsd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,10 @@ jobs:
uses: vmactions/openbsd-vm@v1
with:
envs: 'CCACHE_COMPILERCHECK CCACHE_DIR CCACHE_MAXSIZE'
prepare: pkg_add -v cmake git ccache boost libevent sqlite3 zeromq python py3-zmq
prepare: |
pkg_add -v cmake ninja git ccache boost libevent sqlite3 zeromq python py3-zmq
git clone --depth=1 https://codeberg.org/OpenBSD/ports.git /usr/ports
make -C /usr/ports/devel/capnproto/ install
run: git config --global --add safe.directory ${{ github.workspace }}
sync: 'rsync'
copyback: false
Expand All @@ -60,7 +63,7 @@ jobs:
- name: Generate buildsystem
run: |
cd ${{ github.workspace }}
cmake -B build -DWITH_ZMQ=ON -DBUILD_BENCH=ON -DBUILD_FUZZ_BINARY=ON -DWERROR=ON
cmake -B build -DCMAKE_GENERATOR="Ninja" -DWITH_ZMQ=ON -DBUILD_BENCH=ON -DBUILD_FUZZ_BINARY=ON -DWERROR=ON

- name: Build
uses: ./ci/nightly/.github/actions/build-with-ccache
Expand Down
Loading