Skip to content

Commit

Permalink
Add seccomp build for Linux/ubuntu.
Browse files Browse the repository at this point in the history
  • Loading branch information
kristapsdz authored Nov 18, 2023
1 parent 1d3669b commit 53aea10
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions .github/workflows/makefile.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: Makefile CI
name: Linux Regression Tests
on: [push]
jobs:
build:
standard:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand All @@ -13,3 +13,15 @@ jobs:
run: bmake
- name: Run regress
run: bmake regress
sandboxed:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install dependencies
run: sudo apt-get install -y libcurl4-openssl-dev bmake
- name: configure
run: ./configure CPPFLAGS="-DENABLE_SECCOMP_FILTER=1"
- name: Compile
run: bmake
- name: Run regress
run: bmake regress

0 comments on commit 53aea10

Please sign in to comment.