cleanup: add IPsec ESP transport support, packet print debug functions, and misc cleanup. #28
Workflow file for this run
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: Linux interop tests | ||
| on: | ||
| push: | ||
| branches: [ 'master', 'main', 'release/**' ] | ||
| pull_request: | ||
| branches: [ '*' ] | ||
| jobs: | ||
| unit_test: | ||
| runs-on: ubuntu-22.04 | ||
| steps: | ||
| - uses: actions/checkout@v2 | ||
| with: | ||
| submodules: true | ||
| - name: Update repo | ||
| run: | | ||
| sudo apt-get update | ||
| sudo modprobe tun | ||
| - name: Build linux tests | ||
| run: | | ||
| mkdir -p build/port | ||
| make | ||
| # - name: Run interop tests | ||
| # run: | | ||
| # sudo build/test | ||
| # | ||
| # | ||