Skip to content

Commit b6b1a81

Browse files
committed
Revert unit test pipeline changes
1 parent 6c9b4c7 commit b6b1a81

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.buildkite/pipeline.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,10 @@ steps:
6464

6565
- label: "Unit tests - fips140=only Ubuntu 22.04"
6666
key: "unit-tests-2204-fips140-only"
67-
command: ".buildkite/scripts/steps/unit-tests.sh test:fipsOnlyUnit"
67+
command: ".buildkite/scripts/steps/unit-tests.sh"
68+
env:
69+
FIPS: "true"
70+
GODEBUG: "fips140=only"
6871
artifact_paths:
6972
- "build/TEST-*.html"
7073
- "build/TEST-*.xml"

.buildkite/scripts/steps/unit-tests.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,8 @@
22
source .buildkite/scripts/common.sh
33
set +euo pipefail
44

5-
target=${1:-"unitTest"}
65
echo "--- Unit tests"
7-
RACE_DETECTOR=true TEST_COVERAGE=true mage $target
6+
RACE_DETECTOR=true TEST_COVERAGE=true mage unitTest
87
TESTS_EXIT_STATUS=$?
98
echo "--- Prepare artifacts"
109
# Copy coverage file to build directory so it can be downloaded as an artifact

0 commit comments

Comments
 (0)