File tree Expand file tree Collapse file tree 3 files changed +4
-2
lines changed
Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -103,6 +103,7 @@ steps:
103103 env :
104104 FIPS : " true"
105105 GOEXPERIMENT : " systemcrypto"
106+ GO_DISTRO : " microsoft"
106107 agents :
107108 provider : " aws"
108109 image : " ${IMAGE_UBUNTU_X86_64_FIPS}"
@@ -117,6 +118,7 @@ steps:
117118 env :
118119 FIPS : " true"
119120 GOEXPERIMENT : " systemcrypto"
121+ GO_DISTRO : " stdlib"
120122 agents :
121123 provider : " aws"
122124 image : " ${IMAGE_UBUNTU_X86_64_FIPS}"
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ source .buildkite/scripts/common.sh
77
88add_bin_path
99
10- if [[ ${FIPS:- false} == " true" ]]; then
10+ if [[ ${FIPS:- false} == " true" && ${GO_DISTRO :- stdlib} == " microsoft " ]]; then
1111 with_msft_go
1212else
1313 with_go
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ source .buildkite/scripts/common.sh
77
88add_bin_path
99
10- if [[ ${FIPS:- false} == " true" ]]; then
10+ if [[ ${FIPS:- false} == " true" && ${GO_DISTRO :- stdlib} == " microsoft " ]]; then
1111 with_msft_go
1212else
1313 with_go
You can’t perform that action at this time.
0 commit comments