From 7c55c95f1d15ce6ef7c109feed74dab1fc0abdd3 Mon Sep 17 00:00:00 2001 From: David Dworken Date: Fri, 9 Feb 2024 18:27:26 -0800 Subject: [PATCH] More tweaks for smoke testing --- .github/workflows/distro-smoke-test.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/distro-smoke-test.yml b/.github/workflows/distro-smoke-test.yml index 94f48e3..28e6dbc 100644 --- a/.github/workflows/distro-smoke-test.yml +++ b/.github/workflows/distro-smoke-test.yml @@ -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