Merge pull request #16004 from Azanul/main

Clean golang test cache for remaining ci workflows
This commit is contained in:
Marek Siarkowicz 2023-06-05 10:33:47 +02:00 committed by GitHub
commit 337164ba4a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 0 deletions

View File

@ -24,6 +24,7 @@ jobs:
TARGET: ${{ matrix.target }}
run: |
set -euo pipefail
go clean -testcache
echo "${TARGET}"
case "${TARGET}" in

View File

@ -38,6 +38,7 @@ jobs:
ETCD_BRANCH: "${{ inputs.etcdBranch }}"
run: |
set -euo pipefail
go clean -testcache
# Use --failfast to avoid overriding report generated by failed test
GO_TEST_FLAGS="-v --count ${{ inputs.count }} --timeout ${{ inputs.testTimeout }} --failfast --run TestRobustness"

View File

@ -27,6 +27,7 @@ jobs:
TARGET: ${{ matrix.target }}
run: |
set -euo pipefail
go clean -testcache
mkdir "${TARGET}"
export JUNIT_REPORT_DIR=$(realpath ${TARGET})