Add a static check to see if we properly align our struct hvt_ring on… #134
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: FreeBSD | |
| 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: FreeBSD action | |
| id: test | |
| uses: vmactions/freebsd-vm@v1 | |
| with: | |
| usesh: true | |
| prepare: | | |
| pkg install -y pkgconf gmake git | |
| run: | | |
| git config --global --add safe.directory /home/runner/work/solo5/solo5 | |
| ./configure.sh | |
| gmake |