Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 17 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -602,7 +602,7 @@ workflows:
go_target_os: linux
go_os: linux
go_arch: amd64
static_binary: false # TODO: set to true when we have confidence for v1.1304.0 release
static_binary: true
go_download_base_url: << pipeline.parameters.go_download_base_url >>
executor: docker-amd64-xl
requires:
Expand Down Expand Up @@ -645,7 +645,7 @@ workflows:
go_target_os: linux
go_os: linux
go_arch: arm64
static_binary: false # TODO: set to true when we have confidence for v1.1304.0 release
static_binary: true
go_download_base_url: << pipeline.parameters.go_download_base_url >>
executor: docker-arm64-xl
requires:
Expand Down Expand Up @@ -1144,6 +1144,20 @@ workflows:
- '/release.*/'
- '/.*e2e.*/'

- test-release-static:
name: e2e snyk-linux tests (scratch-container-amd64)
context:
- team_hammerhead-cli
requires:
- upload version
cli_download_base_url: << pipeline.parameters.cli_download_base_url >>
filters:
branches:
only:
- main
- '/release.*/'
- '/.*e2e.*/'

- noop:
name: Start Deployments
requires:
Expand All @@ -1166,6 +1180,7 @@ workflows:
- e2e fips tests (win-server2022-amd64)
- e2e experimental tests (linux-static-amd64)
- e2e experimental tests (scratch-container-amd64)
- e2e snyk-linux tests (scratch-container-amd64)
filters:
branches:
only:
Expand Down
5 changes: 5 additions & 0 deletions cliv2/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,11 @@ V1_BUILD_TYPE = build:prod
V1_BINARY_FOLDER = ts-cli-binaries
# default to empty string, which means no subfolder
V1_BINARY_SUBFOLDER =
# ensures we set the correct ts-cli-binaries subfolder for static node binaries
# when STATIC_NODE_BINARY=true is passed to the make command
ifeq ($(STATIC_NODE_BINARY), true)
V1_BINARY_SUBFOLDER = experimental/
endif
HASH_STRING = $(HASH)$(HASH_ALGORITHM)
SIGN_SCRIPT = $(WORKING_DIR)/scripts/sign_$(_GO_OS).sh
ISSIGNED_SCRIPT = $(WORKING_DIR)/scripts/issigned_$(_GO_OS).sh
Expand Down
Loading