From 2b86d9dabf4f323b7d72cef6413bb3a6451b056f Mon Sep 17 00:00:00 2001 From: David Dworken Date: Fri, 9 Feb 2024 18:37:35 -0800 Subject: [PATCH] Add cgo deps --- .github/workflows/distro-smoke-test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/distro-smoke-test.yml b/.github/workflows/distro-smoke-test.yml index 4cf5ae0..95b733c 100644 --- a/.github/workflows/distro-smoke-test.yml +++ b/.github/workflows/distro-smoke-test.yml @@ -28,7 +28,7 @@ jobs: # Install our dependencies apt-get update - apt-get install -y zsh tmux fish ca-certificates make + apt-get install -y zsh tmux fish ca-certificates make build-essential gcc # 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/ @@ -38,7 +38,7 @@ jobs: # Install our dependencies sudo dnf update -y - sudo dnf install -y zsh tmux fish make + sudo dnf install -y zsh tmux fish make gcc - name: Go test env: DD_API_KEY: ${{ secrets.DD_API_KEY }}