Skip to content

Commit

Permalink
Added some of the packages needed for CI.
Browse files Browse the repository at this point in the history
  • Loading branch information
ceiphr committed Jun 28, 2023
1 parent 54b5936 commit 61413a3
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/fedora.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
echo 'ENV CI=true'
echo '# Install packages'
echo 'RUN dnf -y update'
echo 'RUN dnf -y install git dnf-plugins-core'
echo 'RUN dnf -y install bash zsh git rsync dnf-plugins-core'
echo 'RUN dnf clean all'
echo '# Copy dotfiles'
echo 'COPY dotfiles dotfiles'
Expand Down
10 changes: 10 additions & 0 deletions .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,16 @@ jobs:
wget https://github.com/bats-core/bats-support/archive/master.zip -O support.zip
unzip support.zip
mv bats-support-master/* test/test_helper/bats-support/
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y \
bash \
zsh \
git \
rsync \
- name: Run test on OS ${{ matrix.os }}
env:
TERM: linux # fix tput for tty issue work around
Expand Down

0 comments on commit 61413a3

Please sign in to comment.