wip #423
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: Testing on CI | |
on: | |
push: | |
branches: | |
- "**" | |
env: | |
REGISTRY: ghcr.io | |
IMAGE_NAME: ${{ github.repository }} | |
permissions: | |
contents: read | |
packages: write | |
jobs: | |
create-container: | |
runs-on: ["4-core-ubuntu-arm"] | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Log into container registry | |
uses: docker/login-action@v2 | |
with: | |
registry: ${{ env.REGISTRY }} | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Extract Docker metadata | |
id: meta | |
uses: docker/metadata-action@v5 | |
with: | |
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} | |
- name: Build and push container image | |
id: build-and-push | |
uses: docker/build-push-action@v4 | |
with: | |
context: "{{defaultContext}}:tools" | |
push: true | |
tags: ghcr.io/facebook/bpfilter:fedora-41-arm64 | |
labels: ${{ steps.meta.outputs.labels }} | |
cache-from: type=gha | |
cache-to: type=gha,mode=max | |
build: | |
needs: create-container | |
runs-on: ["4-core-ubuntu-arm"] | |
container: ghcr.io/facebook/bpfilter:fedora-41-arm64 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Configure build | |
run: cmake -S $GITHUB_WORKSPACE -B $GITHUB_WORKSPACE/build -DCMAKE_BUILD_TYPE=debug | |
- name: Build | |
run: make -C $GITHUB_WORKSPACE/build -j `nproc` bpfilter libbpfilter bfcli | |
benchmark: | |
needs: create-container | |
runs-on: ["4-core-ubuntu-arm"] | |
container: ghcr.io/facebook/bpfilter:fedora-41-arm64 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Configure build | |
run: cmake -S $GITHUB_WORKSPACE -B $GITHUB_WORKSPACE/build -DCMAKE_BUILD_TYPE=debug -DENABLE_BENCHMARK:BOOL=on | |
- name: Build | |
run: make -C $GITHUB_WORKSPACE/build -j `nproc` benchmark |