diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 089644e..d4faaea 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -131,14 +131,17 @@ jobs: matrix: task: ["test:unit", "test:examples"] runs-on: ubuntu-latest + env: + MAKE: gmake steps: - uses: actions/checkout@v4 - uses: vmactions/openbsd-vm@v1 with: + envs: MAKE usesh: true copyback: false prepare: | - pkg_add ruby%3.1 + pkg_add ruby%3.1 gmake cmake git pkgconf security/gnupg ln -sf /usr/local/bin/ruby31 /usr/local/bin/ruby ln -sf /usr/local/bin/bundle31 /usr/local/bin/bundle ln -sf /usr/local/bin/bundler31 /usr/local/bin/bundler diff --git a/CHANGELOG.md b/CHANGELOG.md index dd05487..93649be 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,7 @@ #### Added +- Add support for extracting xz-compressed tarballs on OpenBSD. (#141 by @postmodern) - When setting the C compiler through the `MiniPortile` constructor, the preferred keyword argument is now `:cc_command`. The original `:gcc_command` is still supported.