Skip to content

Commit

Permalink
fix: smoke tests fixes (#3424)
Browse files Browse the repository at this point in the history
  • Loading branch information
stuartwdouglas authored Nov 19, 2024
1 parent 1635f3b commit d9a9b81
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions .github/workflows/smoketest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,18 +19,17 @@ jobs:
# this might remove tools that are actually needed,
# if set to "true" but frees about 6 GB
tool-cache: false

- name: Checkout the repository with full history
uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}
fetch-depth: 0
fetch-tags: true
- name: Get last tagged release
run: |
latest_release=$(git tag --sort=-v:refname | grep -v v1 | head -n 1)
echo "Latest release: $latest_release"
echo "LATEST_VERSION=${latest_release#v}" >> "$GITHUB_ENV"
echo "CURRENT_COMMIT=$(git rev-parse HEAD)" >> "$GITHUB_ENV"
- name: Check out the last tagged release
run: git checkout v${{ env.LATEST_VERSION }}
- name: Init Hermit
Expand All @@ -52,9 +51,7 @@ jobs:
echo "Running smoke test on the tagged release images"
SKIP_KUBE_FULL_DEPLOY=true go test -v -timeout 15m -tags smoketest -run '^Test' ./smoketest
- name: Check out HEAD of the current branch
env:
HEAD_REF: ${{ github.head_ref }}
run: git checkout "$HEAD_REF"
run: git checkout "$CURRENT_COMMIT"
- name: Init Hermit
uses: cashapp/activate-hermit@v1
- name: Build Language Plugins
Expand Down

0 comments on commit d9a9b81

Please sign in to comment.