We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6550186 commit 02cac91Copy full SHA for 02cac91
.buildkite/pipeline.yml
@@ -30,6 +30,16 @@ steps:
30
cpu: "8"
31
memory: "4G"
32
33
+ - label: ":building_construction: Run local FIPS build"
34
+ key: make-local-fips
35
+ command: ".buildkite/scripts/local_build.sh"
36
+ agents:
37
+ image: "${GO_AGENT_IMAGE}"
38
+ cpu: "8"
39
+ memory: "4G"
40
+ env:
41
+ FIPS: true
42
+
43
- label: ":building_construction: Run local build: MacOS"
44
key: make-local-macos
45
command: ".buildkite/scripts/local_build.sh"
.buildkite/scripts/local_build.sh
@@ -5,6 +5,10 @@ set -euo pipefail
5
source .buildkite/scripts/common.sh
6
7
add_bin_path
8
-with_go
+if [[ -v FIPS && ${FIPS} == "true" ]]; then
9
+ with_msft_go
10
+else
11
+ with_go
12
+fi
13
-make local
14
+make local
0 commit comments