Add a static check to see if we properly align our struct hvt_ring on… #130
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: OpenBSD | |
| on: [push, pull_request] | |
| jobs: | |
| Build: | |
| name: AMD64 | |
| strategy: | |
| matrix: | |
| operating-system: [ubuntu-latest] | |
| runs-on: ${{ matrix.operating-system }} | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: OpenBSD action | |
| id: test | |
| uses: vmactions/openbsd-vm@v1 | |
| with: | |
| usesh: true | |
| prepare: | | |
| pkg_add gmake git | |
| run: | | |
| git config --global --add safe.directory /home/runner/work/solo5/solo5 | |
| ./configure.sh | |
| gmake |