Fix rss_check IPv4 reverse-path misqueue and add key_sync option #332
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: | |
| branches: | |
| - master | |
| - dev | |
| jobs: | |
| build-ubuntu: | |
| runs-on: ubuntu-latest | |
| container: | |
| image: shanakaprageeth/ubuntu24-dpdk:latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v2 | |
| - name: Install dependencies | |
| run: | | |
| apt-get -qq update | |
| apt-get -qq install -y libssl-dev ninja-build | |
| cd dpdk | |
| meson setup build -Dkernel_dir=/lib/modules/6.8.0-64-generic/build | |
| ninja -C build install | |
| - name: Compile f-stack | |
| run: | | |
| cd lib/ | |
| make | |
| - name: Archive production artifacts | |
| if: github.ref_name == 'master' || github.ref_name == 'dev' | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: build_output | |
| path: | | |
| dpdk/build | |
| lib |