cleanup cmake failure output #71
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| build-openbsd: | |
| runs-on: ubuntu-latest | |
| name: build • openbsd | |
| defaults: | |
| run: | |
| shell: openbsd {0} | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Start OpenBSD VM | |
| uses: vmactions/openbsd-vm@v1 | |
| with: | |
| prepare: | | |
| pkg_add -v cmake ninja git bash | |
| run: | | |
| git clone --depth=1 https://codeberg.org/OpenBSD/ports.git /usr/ports | |
| sync: 'rsync' | |
| copyback: false | |
| - name: Install capnproto | |
| run: | | |
| cd /usr/ports/devel/capnproto/ | |
| make install | |
| - name: Run CI script | |
| run: | | |
| cd ${{ github.workspace }} | |
| CI_CONFIG="ci/configs/openbsd.bash" bash ci/scripts/ci.sh | |
| build-freebsd: | |
| runs-on: ubuntu-latest | |
| name: build • freebsd | |
| defaults: | |
| run: | |
| shell: freebsd {0} | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Start FreeBSD VM | |
| uses: vmactions/freebsd-vm@v1 | |
| with: | |
| prepare: | | |
| pkg install -y cmake ninja bash capnproto git | |
| sync: 'rsync' | |
| copyback: false | |
| - name: Run CI script | |
| run: | | |
| cd ${{ github.workspace }} | |
| CI_CONFIG="ci/configs/freebsd.bash" bash ci/scripts/ci.sh |