Skip to content

Commit

Permalink
Add some more plats to our CI
Browse files Browse the repository at this point in the history
  • Loading branch information
NWilson committed Dec 11, 2024
1 parent ac528f2 commit 2271022
Showing 1 changed file with 49 additions and 0 deletions.
49 changes: 49 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,55 @@ jobs:
- name: Test
run: cd build && ctest -C Release -j3 --output-on-failure

freebsd:
name: FreeBSD
runs-on: ubuntu-latest
if: github.event_name != "pull_request"
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
submodules: true

- name: Prepare
run: ./autogen.sh

- name: Build & test
uses: vmactions/freebsd-vm@v1
with:
usesh: true
run: |
set -e
./configure --enable-jit --enable-pcre2-16 --enable-pcre2-32
make -j3 CPPFLAGS='-Wall -Wextra -Werror'
make check
solaris:
name: Solaris
runs-on: ubuntu-latest
if: github.event_name != "pull_request"
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
submodules: true

- name: Prepare
run: ./autogen.sh

- name: Build & test
uses: vmactions/solaris-vm@v1
with:
usesh: true
prepare: |
pkg install developer/gcc system/header
run: |
set -e
./configure --enable-jit --enable-pcre2-16 --enable-pcre2-32
gmake -j3 CPPFLAGS='-Wall -Wextra -Werror'
gmake check
coverage:
name: Code coverage
runs-on: ubuntu-latest
Expand Down

0 comments on commit 2271022

Please sign in to comment.