Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
T
Tarantool Test
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
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
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
picodata
mod
Tarantool Test
Merge requests
!5
newer ci templates and msrv bump
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
newer ci templates and msrv bump
newer-ci-templates
into
master
Overview
0
Commits
5
Pipelines
9
Changes
5
Merged
Fedor Telnov
requested to merge
newer-ci-templates
into
master
10 months ago
Overview
0
Commits
5
Pipelines
9
Changes
2
Expand
0
0
Merge request reports
Compare
version 1
version 8
2c2af8ff
10 months ago
version 7
ce8f6b17
10 months ago
version 6
d8e22f45
10 months ago
version 5
a231182d
10 months ago
version 4
7930cc45
10 months ago
version 3
8d366650
10 months ago
version 2
3c205b62
10 months ago
version 1
c82b63bb
10 months ago
master (base)
and
version 4
latest version
77416607
5 commits,
10 months ago
version 8
2c2af8ff
4 commits,
10 months ago
version 7
ce8f6b17
3 commits,
10 months ago
version 6
d8e22f45
2 commits,
10 months ago
version 5
a231182d
1 commit,
10 months ago
version 4
7930cc45
7 commits,
10 months ago
version 3
8d366650
6 commits,
10 months ago
version 2
3c205b62
5 commits,
10 months ago
version 1
c82b63bb
4 commits,
10 months ago
Show latest version
2 files
+
5
−
63
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
.gitlab-ci.yml
+
1
−
63
Options
include
:
include
:
-
project
:
"
picodata/devops/ci-templates"
-
project
:
"
picodata/devops/ci-templates"
file
:
"
all
.yml"
file
:
"
modules_ci
.yml"
ref
:
0.2.2
ref
:
0.2.2
stages
:
-
test
-
lint
-
utility
variables
:
variables
:
GIT_STRATEGY
:
clone
CI_IMAGE_REPOSITORY
:
docker-public.binary.picodata.io
CI_IMAGE_REPOSITORY
:
docker-public.binary.picodata.io
CI_IMAGE
:
"
${CI_IMAGE_REPOSITORY}/${CI_PROJECT_NAME}:0.1.0"
CI_IMAGE
:
"
${CI_IMAGE_REPOSITORY}/${CI_PROJECT_NAME}:0.1.0"
DOCKER_AUTH_CONFIG
:
$DOCKER_AUTH_RO
DOCKER_AUTH_CONFIG
:
$DOCKER_AUTH_RO
CARGO_NET_GIT_FETCH_WITH_CLI
:
"
true"
default
:
image
:
$CI_IMAGE
.base
:
extends
:
.base_rust_cache
variables
:
# variables for rust cache
CARGO_HOME
:
$CI_PROJECT_DIR/.cargo
SCCACHE_DIR
:
$CI_PROJECT_DIR/.cache/sccache
RUSTC_WRAPPER
:
sccache
image
:
name
:
$CI_IMAGE
pull_policy
:
[
always
,
if-not-present
]
tags
:
-
docker
needs
:
[]
interruptible
:
true
int-test
:
stage
:
"
test"
extends
:
.base
script
:
-
make int-test
rust-lint
:
extends
:
.base
stage
:
lint
script
:
-
make rust-lint
rust-fmt
:
stage
:
lint
extends
:
.base
script
:
-
cargo fmt --check
publish-dry-run
:
stage
:
utility
extends
:
.base
script
:
-
make publish-dry-run
publish
:
stage
:
utility
extends
:
.base
when
:
manual
script
:
-
make publish
needs
:
[
publish-dry-run
]
build_ci
:
stage
:
utility
extends
:
.build_ci_template
variables
:
DOCKER_REPOSITORY
:
"
docker-public.binary.picodata.io"
Loading