feat: added ssl_sniffer #4
Workflow file for this run
This file contains 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: create-bin | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
- name: Install dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y clang llvm libelf-dev gcc-multilib linux-headers-$(uname -r) build-essential | |
- name: Setting up libbpf | |
run: | | |
make -C lib/libbpf/src | |
sudo make -C lib/libbpf/src install | |
- name: Compile | |
run: | | |
make | |
- name: Archive production artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: evilbpf-bin-${{ github.sha }} | |
path: | | |
dst |