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
!14
Resolve "Add gitlab-ci runner for `clippy` (linting)"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve "Add gitlab-ci runner for `clippy` (linting)"
16-add-gitlab-ci-runner-for-clippy-linting
into
dev
Overview
1
Commits
2
Pipelines
0
Changes
1
Merged
Éloïs
requested to merge
16-add-gitlab-ci-runner-for-clippy-linting
into
dev
7 years ago
Overview
1
Commits
2
Pipelines
0
Changes
1
Expand
Closes
#16 (closed)
Edited
7 years ago
by
Éloïs
0
0
Merge request reports
Compare
dev
version 4
5f4c628d
7 years ago
version 3
5871fd04
7 years ago
version 2
f5de6382
7 years ago
version 1
28efd168
7 years ago
dev (base)
and
latest version
latest version
da541cad
2 commits,
7 years ago
version 4
5f4c628d
1 commit,
7 years ago
version 3
5871fd04
3 commits,
7 years ago
version 2
f5de6382
2 commits,
7 years ago
version 1
28efd168
1 commit,
7 years ago
1 file
+
14
−
2
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
.gitlab-ci.yml
+
14
−
2
Options
stages
:
stages
:
-
builds
-
builds
-
tests
-
tests
-
clippy
-
fmt
-
fmt
before_script
:
before_script
:
@@ -40,6 +41,18 @@ build_and_tests:nightly:
@@ -40,6 +41,18 @@ build_and_tests:nightly:
when
:
manual
when
:
manual
allow_failure
:
true
allow_failure
:
true
clippy
:
stage
:
clippy
image
:
rustlang/rust:nightly
tags
:
-
redshift-rs-nightly
before_script
:
-
export PATH="$HOME/.cargo/bin:$PATH"
-
cargo install --force clippy
script
:
-
cargo clippy --all -- -D warnings
allow_failure
:
true
fmt
:
fmt
:
stage
:
fmt
stage
:
fmt
image
:
rustlang/rust:nightly
image
:
rustlang/rust:nightly
@@ -50,5 +63,4 @@ fmt:
@@ -50,5 +63,4 @@ fmt:
-
cargo install --force rustfmt-nightly
-
cargo install --force rustfmt-nightly
script
:
script
:
-
cargo fmt -- --write-mode=diff
-
cargo fmt -- --write-mode=diff
allow_failure
:
true
allow_failure
:
true
\ No newline at end of file
Loading