Fix run workflow. #151
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: Run | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
reuse_build: | |
uses: gamemann/XDP-Firewall/.github/workflows/build.yml@master | |
run: | |
needs: reuse_build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Download artifact from Build workflow | |
uses: actions/download-artifact@v4 | |
with: | |
name: build-output | |
- name: Run apt update | |
run: sudo apt update | |
- name: Install LibConfig | |
run: sudo apt install libconfig-dev | |
- name: Install LibELF | |
run: sudo apt install libelf-dev | |
- name: List files | |
run: ls -la | |
- name: Create /etc/xdpfw directory. | |
run: sudo mkdir -p /etc/xdpfw | |
- name: Copy XDP program to /etc/xdpfw. | |
run: sudo cp -f ./xdp/xdp_prog.o /etc/xdpfw | |
- name: Add execute permissions to executable file | |
run: sudo chmod +x ./loader/xdpfw | |
- name: Create basic config file. | |
run: echo 'verbose = 5; filters = ( { enabled = true; log = true; action = 0; tcp_enabled = true; tcp_dport = 22; } );' > ./basic.conf | |
- name: Retrieve default network interface | |
run: echo "INTERFACE=$(ip route | awk '/default/ {print $5}')" >> $GITHUB_ENV | |
- name: Run XDP FW for 10 seconds using basic config and default network interface. | |
run: sudo ./loader/xdpfw -c ./basic.conf -t 10 -i ${{ env.INTERFACE }} |