Skip to content

Commit

Permalink
🦸‍♀️ mommy doesn't use pkgin in netbsd tests~
Browse files Browse the repository at this point in the history
  • Loading branch information
FWDekker committed Apr 28, 2024
1 parent a65e172 commit aeae277
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ jobs:
export PATH="/usr/sbin:$PATH" # Add 'pkg_*' commands to path
echo "::group::Install basic packages"
sudo pkgin -y in git gmake mozilla-rootcerts-openssl
pkg_add git gmake mozilla-rootcerts-openssl
echo "::endgroup::"
echo "::group::Ignore ownership issues"
Expand Down
9 changes: 5 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -442,17 +442,17 @@ jobs:
export PATH="/usr/sbin:$PATH" # Add 'pkg_*' commands to path
echo "::group::Install basic packages"
sudo pkgin -y in git gmake mozilla-rootcerts-openssl
pkg_add git gmake mozilla-rootcerts-openssl
echo "::endgroup::"
echo "::group::Install ShellSpec"
git clone --depth=1 https://github.com/shellspec/shellspec.git /tmp/shellspec/
sudo gmake -C /tmp/shellspec/ install
gmake -C /tmp/shellspec/ install
rm -rf /tmp/shellspec
echo "::endgroup::"
echo "::group::Install additional shells"
sudo pkgin -y in fish zsh
pkg_add fish zsh
touch "$HOME/.zshrc"
echo "::endgroup::"
Expand All @@ -463,7 +463,8 @@ jobs:
run: |
set -e
export PATH="/usr/sbin:$PATH" # Add 'pkg_*' commands to path
export MOMMY_ZSH_SKIP=1 # zsh completion capturing totally does not work~
export MOMMY_MAN_SKIP=1 # man doesn't work on local files
export MOMMY_ZSH_SKIP=1 # zsh completion capturing totally does not work
echo "::group::Test script"
gmake test
Expand Down

0 comments on commit aeae277

Please sign in to comment.