Add a static check to see if we properly align our struct hvt_ring on… #131
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: Ubuntu-arm | |
| on: [push, pull_request] | |
| jobs: | |
| Build: | |
| name: ARM64 | |
| strategy: | |
| matrix: | |
| operating-system: [ubuntu-24.04-arm] | |
| runs-on: ${{ matrix.operating-system }} | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Install dependencies | |
| run: | | |
| sudo apt-get install -y libseccomp-dev pkg-config ${{ matrix.cc }} | |
| - name: Build | |
| run: | | |
| ./configure.sh | |
| make |