File tree Expand file tree Collapse file tree 3 files changed +17
-6
lines changed Expand file tree Collapse file tree 3 files changed +17
-6
lines changed Original file line number Diff line number Diff line change 1+ #! /bin/bash
12VERSION=$( git describe --tags --always --match " [0-9][0-9][0-9][0-9].*.*" )
23echo $VERSION
34
Original file line number Diff line number Diff line change 1+ #! /bin/bash
12VERSION=$( git describe --tags --always --match " [0-9][0-9][0-9][0-9].*.*" )
23echo $VERSION
34
45# Disable FIPS module in go-boring
56export GOEXPERIMENT=noboringcrypto
7+ export CGO_ENABLED=0
68
79# This controls the directory the built artifacts go into
810export ARTIFACT_DIR=built_artifacts/
Original file line number Diff line number Diff line change @@ -9,22 +9,30 @@ buster: &buster
99 - *pinned_go
1010 - build-essential
1111 - gotest-to-teamcity
12+ - fakeroot
13+ - rubygem-fpm
14+ - rpm
15+ - libffi-dev
16+ - reprepro
17+ - createrepo
1218 pre-cache : &build_pre_cache
1319 - export GOCACHE=/cfsetup_build/.cache/go-build
1420 - go install golang.org/x/tools/cmd/goimports@latest
1521 post-cache :
16- - export GOOS=linux
17- - export GOARCH=amd64
18- - make cloudflared
22+ # TODO: TUN-8126 this is temporary to make sure packages can be built before release
23+ - ./build-packages.sh
24+ # Build binary for component test
25+ - GOOS=linux GOARCH=amd64 make cloudflared
1926 build-fips :
2027 build_dir : *build_dir
2128 builddeps : *build_deps
2229 pre-cache : *build_pre_cache
2330 post-cache :
24- - export GOOS=linux
25- - export GOARCH=amd64
26- - make cloudflared
2731 - export FIPS=true
32+ # TODO: TUN-8126 this is temporary to make sure packages can be built before release
33+ - ./build-packages-fips.sh
34+ # Build binary for component test
35+ - GOOS=linux GOARCH=amd64 make cloudflared
2836 cover :
2937 build_dir : *build_dir
3038 builddeps : *build_deps
You can’t perform that action at this time.
0 commit comments