Skip setting the hostname for smoke tests since we don't need it

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

View File

@ -32,9 +32,6 @@ jobs:
# 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
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
hostname ghaction-runner-hostname
- name: Fedora-based Setup - name: Fedora-based Setup
if: ${{ matrix.distro == 'fedora:latest' }} if: ${{ matrix.distro == 'fedora:latest' }}
run: | run: |
@ -42,9 +39,6 @@ jobs:
# Install our dependencies # Install our dependencies
sudo dnf update -y 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
sudo hostname ghaction-runner-hostname
- name: Go test - name: Go test
env: env:
DD_API_KEY: ${{ secrets.DD_API_KEY }} DD_API_KEY: ${{ secrets.DD_API_KEY }}