summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephane Peter <megastep@megastep.org>2022-10-26 15:48:01 -0700
committerStephane Peter <megastep@megastep.org>2022-10-26 15:48:01 -0700
commitf096f8887e612e1a0f1341f37910238dd09fc104 (patch)
tree05af8c4401e4d171b6207389146056f1df354f5e
parentaf9db729b7458fb47a2c6bd7f366fdc890a8d8bf (diff)
downloadmakeself-f096f8887e612e1a0f1341f37910238dd09fc104.tar.gz
Added NetBSD testing; update checkout action for lint
-rw-r--r--.github/workflows/build.yml18
1 files changed, 17 insertions, 1 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index ba8408f..cc243cd 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -86,6 +86,22 @@ jobs:
pwd
sh ./test/run-makeself.sh
+ test-netbsd:
+ needs: test
+ runs-on: macos-12
+ name: Test Makeself on NetBSD
+ steps:
+ - uses: actions/checkout@v3
+ - uses: actions/download-artifact@v3
+ - name: Test on NetBSD
+ uses: vmactions/netbsd-vm@v0
+ with:
+ usesh: true
+ prepare: pkg_add pbzip2
+ run: |
+ pwd
+ sh ./test/run-makeself.sh
+
test-solaris:
needs: test
runs-on: macos-12
@@ -143,7 +159,7 @@ jobs:
steps:
- name: Checkout Makeself
- uses: actions/checkout@v2
+ uses: actions/checkout@v3
- name: Run ShellCheck
uses: megastep/shell-linter@develop
with: