We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6c9b4c7 commit b6b1a81Copy full SHA for b6b1a81
2 files changed
.buildkite/pipeline.yml
@@ -64,7 +64,10 @@ steps:
64
65
- label: "Unit tests - fips140=only Ubuntu 22.04"
66
key: "unit-tests-2204-fips140-only"
67
- command: ".buildkite/scripts/steps/unit-tests.sh test:fipsOnlyUnit"
+ command: ".buildkite/scripts/steps/unit-tests.sh"
68
+ env:
69
+ FIPS: "true"
70
+ GODEBUG: "fips140=only"
71
artifact_paths:
72
- "build/TEST-*.html"
73
- "build/TEST-*.xml"
.buildkite/scripts/steps/unit-tests.sh
@@ -2,9 +2,8 @@
2
source .buildkite/scripts/common.sh
3
set +euo pipefail
4
5
-target=${1:-"unitTest"}
6
echo "--- Unit tests"
7
-RACE_DETECTOR=true TEST_COVERAGE=true mage $target
+RACE_DETECTOR=true TEST_COVERAGE=true mage unitTest
8
TESTS_EXIT_STATUS=$?
9
echo "--- Prepare artifacts"
10
# Copy coverage file to build directory so it can be downloaded as an artifact
0 commit comments