This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test xz on OpenBSD | |
on: [push, fork] | |
jobs: | |
OpenBSD-test: | |
runs-on: ubuntu-latest | |
name: Test xz on OpenBSD | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Test in OpenBSD | |
id: test | |
uses: vmactions/OpenBSD-vm@v1 | |
with: | |
usesh: true | |
prepare: | | |
/usr/sbin/pkg_add -I -v autoconf automake gmake gettext-tools gtar libtool m4 | |
run: | | |
export LC_ALL=C LANG=C | |
uname -a | |
./autogen.sh | |
./configure --enable-werror | |
make | |
make check VERBOSE=1 |