Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
bwinf
medal
Commits
034fcd94
Commit
034fcd94
authored
Mar 17, 2019
by
Robert Czechowski
Browse files
Add .gitlab-ci.yml
parent
99643e54
Pipeline
#40
passed with stages
in 6 minutes and 5 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
.gitlab-ci.yml
0 → 100644
View file @
034fcd94
image
:
'
rust:latest'
stages
:
-
test
-
doc
-
build
variables
:
CARGO_HOME
:
$CI_PROJECT_DIR/cargo
APT_CACHE_DIR
:
$CI_PROJECT_DIR/apt
before_script
:
-
apt-get update -yq
test
:
stage
:
test
script
:
-
rustc --version
-
cargo --version
-
cargo test --verbose
pages
:
stage
:
doc
script
:
-
cargo doc --no-deps
-
mv target/doc public
-
echo '<meta http-equiv="refresh" content="0; url=citest">' > public/index.html
artifacts
:
paths
:
-
public
only
:
-
master
cache
:
paths
:
-
apt/
-
cargo/
-
target/
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment