Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Dunitrust
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
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
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
nodes
rust
Dunitrust
Merge requests
!42
Resolve "Change CI : congregate Stable Build and Stable Tests in same job"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve "Change CI : congregate Stable Build and Stable Tests in same job"
51-change-ci-congregate-stable-build-and-stable-tests-in-same-job
into
dev
Overview
0
Commits
1
Pipelines
0
Changes
1
Merged
Éloïs
requested to merge
51-change-ci-congregate-stable-build-and-stable-tests-in-same-job
into
dev
7 years ago
Overview
0
Commits
1
Pipelines
0
Changes
1
Expand
Closes
#51 (closed)
Edited
7 years ago
by
Éloïs
0
0
Merge request reports
Compare
dev
version 2
7a78c78a
7 years ago
version 1
43e2734a
7 years ago
dev (base)
and
latest version
latest version
2c185976
1 commit,
7 years ago
version 2
7a78c78a
1 commit,
7 years ago
version 1
43e2734a
1 commit,
7 years ago
1 file
+
8
−
16
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
.gitlab-ci.yml
+
8
−
16
Options
stages
:
-
builds
-
tests
-
build_and_tests
-
clippy
-
fmt
before_script
:
-
export PATH="$HOME/.cargo/bin:$PATH"
build:stable
:
stage
:
builds
build
_and_tests
:stable
:
stage
:
build
_and_test
s
tags
:
-
redshift-rs-stable
script
:
-
cargo build --all-features
tests:stable
:
stage
:
tests
tags
:
-
redshift-rs-stable
script
:
-
cargo test
-
cargo test --all-features
build_and_tests:beta
:
stage
:
tests
stage
:
build_and_
tests
tags
:
-
redshift-rs-beta
script
:
-
rustup update
-
cargo test
-
cargo test
--all-features
when
:
manual
allow_failure
:
true
build_and_tests:nightly
:
stage
:
tests
stage
:
build_and_
tests
image
:
rustlang/rust:nightly
tags
:
-
redshift-rs-nightly
script
:
-
cargo test
-
cargo test
--all-features
when
:
manual
allow_failure
:
true
Loading