docs: mark project as frozen for an indefinite period #85
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: | |
| branches: ["develop", "master"] | |
| pull_request: | |
| branches: ["develop", "master"] | |
| jobs: | |
| test: | |
| name: Test & Build | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: "1.24" | |
| - name: Verify dependencies | |
| run: go mod verify | |
| - name: Build | |
| run: go build -v ./... | |
| - name: Test | |
| run: go test -v ./... | |
| - name: Vet | |
| run: go vet ./... | |
| bpf-smoke: | |
| name: BPF object smoke build | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: "1.24" | |
| - name: Install BPF toolchain | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y clang llvm linux-tools-generic libbpf-dev | |
| sudo ln -sf $(ls /usr/lib/linux-tools/*/bpftool | head -n1) /usr/local/bin/bpftool | |
| - name: Generate embedded BPF objects | |
| run: make generate | |
| - name: Build with embedded objects | |
| run: go build -v ./... |