More tweaks for smoke testing

This commit is contained in:
David Dworken 2024-02-09 18:27:26 -08:00 committed by GitHub
parent 9892255657
commit 7c55c95f1d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -27,20 +27,20 @@ jobs:
run: | run: |
# Install our dependencies # Install our dependencies
sudo apt-get update apt-get update
sudo apt-get install -y zsh tmux fish 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 # 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 # 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 - name: Fedora-based Setup
if: ${{ matrix.distro == 'fedora:latest' }} if: ${{ matrix.distro == 'fedora:latest' }}
run: | run: |
# Install our dependencies # Install our dependencies
sudo dnf update sudo dnf update -y
sudo dnf install -y zsh tmux fish sudo dnf install -y zsh tmux fish
# Set a consistent hostname so we can run tests that depend on it # Set a consistent hostname so we can run tests that depend on it