mirror of
https://github.com/fumiama/terasu-cloudflared.git
synced 2026-06-05 00:50:24 +08:00
## Summary This commit migrates the cloduflared ci pipelines, that built, tested and component tested the linux binaries to gitlab ci. The only thing that is remaining to move from teamcity to gitlab are now the release pipelines that run on master. Relates to TUN-9800
42 lines
1.4 KiB
YAML
42 lines
1.4 KiB
YAML
variables:
|
|
GO_VERSION: "go1.24.6"
|
|
GIT_DEPTH: "0"
|
|
|
|
default:
|
|
id_tokens:
|
|
VAULT_ID_TOKEN:
|
|
aud: https://vault.cfdata.org
|
|
|
|
stages: [pre-build, build, validate, test, package, release]
|
|
|
|
include:
|
|
#####################################################
|
|
########## Import Commons Configurations ############
|
|
#####################################################
|
|
- local: .ci/commons.gitlab-ci.yml
|
|
|
|
#####################################################
|
|
############# Build or Fetch CI Image ###############
|
|
#####################################################
|
|
- local: .ci/ci-image.gitlab-ci.yml
|
|
|
|
#####################################################
|
|
################## Linux Builds ###################
|
|
#####################################################
|
|
- local: .ci/linux.gitlab-ci.yml
|
|
|
|
#####################################################
|
|
################## Windows Builds ###################
|
|
#####################################################
|
|
- local: .ci/windows.gitlab-ci.yml
|
|
|
|
#####################################################
|
|
################### macOS Builds ####################
|
|
#####################################################
|
|
- local: .ci/mac.gitlab-ci.yml
|
|
|
|
#####################################################
|
|
################# Release Packages ##################
|
|
#####################################################
|
|
- local: .ci/release.gitlab-ci.yml
|