From 9f01cbf071e9569c8b75bd04e68b57702ea29015 Mon Sep 17 00:00:00 2001 From: Safeer Jiwan Date: Thu, 3 Oct 2024 14:02:05 -0700 Subject: [PATCH] go test smoketest --- .github/workflows/ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0a173d91fa..5af33c5ac5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -381,6 +381,8 @@ jobs: uses: actions/checkout@v4 with: ref: ${{ env.LATEST_RELEASE }} + fetch-depth: 0 + fetch-tags: true - name: Init Hermit uses: cashapp/activate-hermit@v1 with: @@ -398,6 +400,7 @@ jobs: set -euo pipefail # shellcheck disable=SC2046 test_files=$(git grep -l '^//go:build smoketest' | xargs -I {} dirname ./{}) + echo "smoke test test_files: $test_files" for file in $test_files; do - go test -v -race -tags smoketest -run '^SmokeTest' $file + go test -v -run '^SmokeTest' "$file" done