summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephane Peter <megastep@megastep.org>2022-10-26 15:32:39 -0700
committerStephane Peter <megastep@megastep.org>2022-10-26 15:32:39 -0700
commitaf9db729b7458fb47a2c6bd7f366fdc890a8d8bf (patch)
tree20d48a8ae868441d2c149b4a440a1d0a716b39e8
parent2e91576704420d16a5d9a1ac1a54cd45e3bcd62b (diff)
downloadmakeself-af9db729b7458fb47a2c6bd7f366fdc890a8d8bf.tar.gz
Added OpenBSD tests
-rw-r--r--.github/workflows/build.yml20
1 files changed, 18 insertions, 2 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 4390051..ba8408f 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -56,7 +56,7 @@ jobs:
test-freebsd:
needs: test
- runs-on: macos-10.15
+ runs-on: macos-12
name: Test Makeself on FreeBSD
steps:
- uses: actions/checkout@v3
@@ -70,9 +70,25 @@ jobs:
pwd; freebsd-version
sh ./test/run-makeself.sh
+ test-openbsd:
+ needs: test
+ runs-on: macos-12
+ name: Test Makeself on OpenBSD
+ steps:
+ - uses: actions/checkout@v3
+ - uses: actions/download-artifact@v3
+ - name: Test on OpenBSD
+ uses: vmactions/openbsd-vm@v0
+ with:
+ usesh: true
+ prepare: pkg_add pbzip2
+ run: |
+ pwd
+ sh ./test/run-makeself.sh
+
test-solaris:
needs: test
- runs-on: macos-10.15
+ runs-on: macos-12
name: Test Makeself on Solaris
steps:
- uses: actions/checkout@v3