Skip to content
Snippets Groups Projects

Merged upstream v14.1.0

Merged Georges Racinet requested to merge topic/heptapod/upstream-14.1 into branch/heptapod
123 files
+ 24403
2896
Compare changes
  • Side-by-side
  • Inline
Files
123
variables:
CI_IMAGE: registry.gitlab.com/gitlab-org/gitlab-runner/ci:1.13.8-12
GOROOT: /usr/local/go
# Following variables are used in some jobs to install specified software
RELEASE_INDEX_GEN_VERSION: "latest"
DOCKER_VERSION: 20.10.2
@@ -26,6 +25,8 @@
DEPENDENCY_SCANNING_DISABLED: "true"
FF_USE_FASTZIP: "true"
TRANSFER_METER_FREQUENCY: "5s"
FF_USE_NEW_BASH_EVAL_STRATEGY: "true"
GO111MODULE: "on"
default:
image: $CI_IMAGE
@@ -36,9 +37,6 @@
when:
- runner_system_failure
before_script:
- unset GPG_KEY
.no_cache:
cache: {}
@@ -115,17 +113,9 @@
GIT_LFS_WINDOWS_AMD64_CHECKSUM: "ca05b0b9bd39d99665045776a5d0d5c7bfa2605a6118c2f489bfd40c2c3e4f2c"
PWSH_WINDOWS_AMD64_CHECKSUM: "D234CFD6E9DD4A2CA68BFBC64C416DE42F31760E954812E8ADE02B6D57FE243F"
.windows_base:
variables:
PKG_NAMESPACE: gitlab.com\gitlab-org
PKG_NAME: gitlab-runner
GOPATH: "$CI_PROJECT_DIR\\.gopath"
PKG_BASE_DIR: "$CI_PROJECT_DIR\\.gopath\\src\\$PKG_NAMESPACE"
PKG_BUILD_DIR: "$CI_PROJECT_DIR\\.gopath\\src\\$PKG_NAMESPACE\\$PKG_NAME"
.windows1809_variables:
variables:
WINDOWS_VERSION: servercore1809
.windows1809:
extends:
@@ -126,10 +116,9 @@
.windows1809_variables:
variables:
WINDOWS_VERSION: servercore1809
.windows1809:
extends:
- .windows_base
- .windows1809_variables
tags:
- shared-windows
@@ -142,9 +131,8 @@
.windows2004:
extends:
- .windows_base
- .windows2004_variables
tags:
- windows
- windows-2004
@@ -146,8 +134,19 @@
- .windows2004_variables
tags:
- windows
- windows-2004
.windows20H2_variables:
variables:
WINDOWS_VERSION: servercore20H2
.windows20H2:
extends:
- .windows20H2_variables
tags:
- windows
- windows-20h2
# .stage_done is used as a sentinel at stage n for stage n-1 completion, so we can kick off builds in later stages
# without explicitly waiting for the completion of the n-1 stage
.stage_done:
Loading