Skip to content

Commit

Permalink
Add CI tests using mksh
Browse files Browse the repository at this point in the history
Also, add zstd as a CI requirement. It's already installed in the GHA
image, but it needs to be installed explicitly outside GHA so add it for
good measure.
  • Loading branch information
dfandrich committed Oct 22, 2024
1 parent 1a7657a commit 69f7baa
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,8 @@ jobs:
wireshark-common
xmlstarlet
zpaq
make curl ca-certificates groff-base man2html-base bash busybox ksh toybox mmv yash zsh
zstd
make curl ca-certificates groff-base man2html-base bash busybox ksh toybox mmv mksh yash zsh
- name: 'Install extras'
# One package is no longer available in Ubuntu and must be installed manually
run: |
Expand All @@ -94,6 +95,8 @@ jobs:
run: make check -k SHELL=dash
- name: 'Run tests with ksh'
run: make check -k SHELL=ksh
- name: 'Run tests with mksh'
run: make check -k SHELL=mksh
- name: 'Run tests with yash'
run: make check -k SHELL=yash
- name: 'Run tests with zsh'
Expand Down

0 comments on commit 69f7baa

Please sign in to comment.