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
!51
WIP: Resolve "CI : pass fmt job to stable version"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Closed
WIP: Resolve "CI : pass fmt job to stable version"
61-ci-pass-fmt-job-to-stable-version
into
dev
Overview
0
Commits
1
Pipelines
0
Changes
1
Closed
Éloïs
requested to merge
61-ci-pass-fmt-job-to-stable-version
into
dev
7 years ago
Overview
0
Commits
1
Pipelines
0
Changes
1
Expand
Closes
#61 (closed)
0
0
Merge request reports
Compare
dev
version 3
d2246fa1
7 years ago
version 2
bcb6a135
7 years ago
version 1
564a79a8
7 years ago
dev (base)
and
latest version
latest version
c0aeee99
1 commit,
7 years ago
version 3
d2246fa1
1 commit,
7 years ago
version 2
bcb6a135
1 commit,
7 years ago
version 1
564a79a8
1 commit,
7 years ago
1 file
+
11
−
14
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
.gitlab-ci.yml
+
11
−
14
Options
stages
:
-
build_and_tests
-
clippy
-
fmt
-
clippy
before_script
:
-
export PATH="$HOME/.cargo/bin:$PATH"
@@ -32,27 +32,24 @@ build_and_tests:nightly:
-
cargo test --all-features
when
:
manual
allow_failure
:
true
clippy
:
stage
:
clippy
image
:
rustlang/rust:nightly
fmt
:
stage
:
fmt
tags
:
-
redshift-rs-
nightly
-
redshift-rs-
stable
before_script
:
-
export PATH="$HOME/.cargo/bin:$PATH"
-
cargo install --force clippy --verbose
script
:
-
cargo clippy --all -- -D warnings --verbose
allow_failure
:
true
-
cargo fmt --force --all -- --write-mode=diff
fmt
:
stage
:
fmt
clippy
:
stage
:
clippy
image
:
rustlang/rust:nightly
tags
:
-
redshift-rs-nightly
before_script
:
-
export PATH="$HOME/.cargo/bin:$PATH"
-
cargo install --force
rustfmt-nightly
-
cargo install --force
clippy --verbose
script
:
-
cargo fmt -- --write-mode=diff
allow_failure
:
true
\ No newline at end of file
-
cargo clippy --all -- -D warnings --verbose
allow_failure
:
true
\ No newline at end of file
Loading