Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
H
heptapod-runner
Manage
Activity
Members
Labels
Plan
Issues
33
Issue boards
Milestones
Wiki
Code
Merge requests
3
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
heptapod
heptapod-runner
Merge requests
!32
Merged upstream v14.1.0
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Merged upstream v14.1.0
topic/heptapod/upstream-14.1
into
branch/heptapod
Overview
0
Commits
127
Pipelines
1
Changes
123
Merged
Georges Racinet
requested to merge
topic/heptapod/upstream-14.1
into
branch/heptapod
1 year ago
Overview
0
Commits
127
Pipelines
1
Changes
123
Expand
🚀
👍
0
👎
0
Merge request reports
Compare
branch/heptapod
branch/heptapod (base)
and
latest version
latest version
6b15d384
127 commits,
1 year ago
123 files
+
24403
−
2896
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
123
Search (e.g. *.vue) (Ctrl+P)
.gitlab/ci/_common.gitlab-ci.yml
+
13
−
14
Options
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