We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 627fb73 commit fa71e74Copy full SHA for fa71e74
.buildkite/pipeline.yml
@@ -103,6 +103,7 @@ steps:
103
env:
104
FIPS: "true"
105
GOEXPERIMENT: "systemcrypto"
106
+ GO_DISTRO: "microsoft"
107
agents:
108
provider: "aws"
109
image: "${IMAGE_UBUNTU_X86_64_FIPS}"
@@ -117,6 +118,7 @@ steps:
117
118
119
120
121
+ GO_DISTRO: "stdlib"
122
123
124
.buildkite/scripts/unit_test.sh
@@ -7,7 +7,7 @@ source .buildkite/scripts/common.sh
7
8
add_bin_path
9
10
-if [[ ${FIPS:-false} == "true" ]]; then
+if [[ ${FIPS:-false} == "true" && ${GO_DISTRO:-stdlib} == "microsoft" ]]; then
11
with_msft_go
12
else
13
with_go
0 commit comments