MRP protocol state machine issues #550
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: build | |
| on: | |
| push: | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| linux: | |
| runs-on: ubuntu-24.04 | |
| container: swift:6.2 | |
| steps: | |
| - name: Packages | |
| run: | | |
| apt-get update | |
| apt-get install -y liburing-dev libnl-3-dev libnl-route-3-dev libnl-nf-3-dev libsystemd-dev | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Version | |
| run: swift --version | |
| - name: Build | |
| run: swift build --build-tests -Xcc -I/usr/include/libnl3 | |
| - name: Test | |
| run: swift test --skip-build | |