Skip to content

Commit

Permalink
Merge pull request #2 from vjardin/basicCI
Browse files Browse the repository at this point in the history
  • Loading branch information
acassen authored Feb 3, 2024
2 parents fbf58be + 1effd31 commit 95f3b6d
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/actions-compile.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: basic compilation test
run-name: ${{ github.actor }} basic compilation test ⚗️
on:
push:
branches:
- '**'
pull_request:
branches:
- '**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: add missing packages
uses: ConorMacBride/install-package@v1
with:
apt: libelf-dev
- name: recursive checkout (with libbpf submodule)
uses: actions/checkout@v4
with:
submodules: true
- name: make
run : make -j $(nproc)
- name: basic run
run : bin/gtp-guard --version

0 comments on commit 95f3b6d

Please sign in to comment.