hyperscan: print database infor is called inside kernel, it may not b… #1
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: Library | |
# DKMS.workflow only checks that the kernel part can be built. Run this pipeline | |
# to test userspace part too. | |
on: [push, workflow_dispatch] | |
jobs: | |
building_runners: | |
strategy: | |
max-parallel: 2 | |
fail-fast: false | |
matrix: | |
hosts: [ | |
{ | |
"target": "ubuntu-22", | |
"docker_image": "docker://harbor.p.gc.onl/ddos/bpf-builder-ubuntu22:main", | |
"publish_target": "nosign/gcdn_nosign/ubuntu_jammy" | |
} | |
] | |
uses: ./.github/workflows/library-builder.yml | |
name: Run build for ${{ matrix.hosts.target }} | |
with: | |
target: ${{ matrix.hosts.target }} | |
docker_image: ${{ matrix.hosts.docker_image }} | |
publish_target: ${{ matrix.hosts.publish_target }} | |
secrets: inherit | |
building_finish: # This step is used as the final sign for GH PR checks | |
runs-on: [self-hosted, ubuntu-22-04] | |
needs: [building_runners] | |
steps: | |
- name: Building Completed | |
run: | | |
echo "Building Completed" |