Skip to content

Commit

Permalink
XXX Some gmake experiments
Browse files Browse the repository at this point in the history
  • Loading branch information
NWilson committed Dec 11, 2024
1 parent 0957bee commit cfb91a9
Showing 1 changed file with 20 additions and 5 deletions.
25 changes: 20 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ jobs:
freebsd:
name: FreeBSD
runs-on: ubuntu-latest
if: github.event_name != "pull_request"
if: github.event_name != 'pull_request'
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
Expand All @@ -145,7 +145,7 @@ jobs:
solaris:
name: Solaris
runs-on: ubuntu-latest
if: github.event_name != "pull_request"
if: github.event_name != 'pull_request'
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
Expand All @@ -160,13 +160,28 @@ jobs:
with:
usesh: true
prepare: |
pkg install developer/gcc system/header
pkg install developer/make developer/gcc system/header
run: |
set -e
./configure --enable-jit --enable-pcre2-16 --enable-pcre2-32
gmake -j3 CPPFLAGS='-Wall -Wextra -Werror'
gmake check
echo "PATH: $PATH"
which make
which gmake
PATH="/usr/xpg4/bin:$PATH"
echo "PATH: $PATH"
which make
which gmake
ls -l /usr/xpg4/bin/make
ls -l /usr/xpg4/bin/gmake
ls -l /usr/bin/make
ls -l /usr/bin/gmake
ls -l /bin/make
ls -l /bin/gmake
make CPPFLAGS='-Wall -Wextra -Werror'
make check
coverage:
name: Code coverage
Expand Down

0 comments on commit cfb91a9

Please sign in to comment.