Skip to content

Commit

Permalink
More tweaks for smoke testing
Browse files Browse the repository at this point in the history
  • Loading branch information
ddworken authored Feb 10, 2024
1 parent 9892255 commit 7c55c95
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/distro-smoke-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,20 +27,20 @@ jobs:
run: |
# Install our dependencies
sudo apt-get update
sudo apt-get install -y zsh tmux fish
apt-get update
apt-get install -y zsh tmux fish
# Work around a weird bug where zsh on ubuntu actions gives that directory 0777 which makes zsh refuse to start
sudo chmod 0755 -R /usr/share/zsh/
chmod 0755 -R /usr/share/zsh/
# Set a consistent hostname so we can run tests that depend on it
sudo hostname ghaction-runner-hostname
hostname ghaction-runner-hostname
- name: Fedora-based Setup
if: ${{ matrix.distro == 'fedora:latest' }}
run: |
# Install our dependencies
sudo dnf update
sudo dnf update -y
sudo dnf install -y zsh tmux fish
# Set a consistent hostname so we can run tests that depend on it
Expand Down

0 comments on commit 7c55c95

Please sign in to comment.