Skip to content

Commit

Permalink
Don't require bmake for CI testing.
Browse files Browse the repository at this point in the history
  • Loading branch information
kristapsdz committed Jan 26, 2025
1 parent 1037b34 commit 318a7f8
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions .github/workflows/makefile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,36 +5,32 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Install dependencies
run: sudo apt-get install -y bmake
- name: Configure
run: |
cat /etc/os-release
./configure
- name: Build and test
run: bmake regress
run: make regress
linux_libbsd:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Install dependencies
run: sudo apt-get install -y bmake pkg-config libbsd-dev
run: sudo apt-get install -y pkg-config libbsd-dev
- name: Configure
run: |
cat /etc/os-release
CFLAGS=$(pkg-config --cflags libbsd-overlay) ./configure CPPFLAGS="-DENABLE_SECCOMP_FILTER=1" LDFLAGS=$(pkg-config --libs libbsd-overlay)
- name: Build and test
run: bmake regress
run: make regress
macos:
runs-on: macos-latest
steps:
- uses: actions/checkout@master
- name: Install dependencies
run: brew install bmake
- name: Configure
run: ./configure
- name: Build and test
run: bmake regress
run: make regress
freebsd:
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit 318a7f8

Please sign in to comment.