move debugger to its own package #56
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: "Run conformance tests" | |
on: push | |
jobs: | |
test: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Checkout conformance repository | |
uses: actions/checkout@v3 | |
with: | |
repository: Alan-Jowett/bpf_conformance | |
path: conformance | |
submodules: 'true' | |
- name: Install dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y libboost-program-options-dev libboost-filesystem-dev | |
- name: Setup Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: '1.19' | |
- name: Go build test driver | |
run: | | |
go build -o test_driver ./tests/conformance | |
- name: Build conformance checker | |
working-directory: conformance | |
run: | | |
cmake -S . -B build | |
cmake --build build | |
- name: Run checker | |
run: | | |
./conformance/build/bin/bpf_conformance_runner --test_file_directory ./conformance/tests --plugin_path ./test_driver |