forked from FCG-LLC/nanomsg-multi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitlab-ci.yml
51 lines (42 loc) · 1.12 KB
/
.gitlab-ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
image: "portus.cs.int:5000/gitlab/rust:latest"
before_script:
##
## Run ssh-agent (inside the build environment)
##
- eval $(ssh-agent -s)
##
## Add the SSH key stored in SSH_PRIVATE_KEY variable to the agent store
## We're using tr to fix line endings which makes ed25519 keys work
## without extra base64 encoding.
## https://gitlab.com/gitlab-examples/ssh-private-key/issues/1#note_48526556
##
- echo "$SSH_PRIVATE_KEY" | tr -d '\r' | ssh-add - > /dev/null
##
## Create the SSH directory and give it the right permissions
##
- mkdir -p ~/.ssh
- chmod 700 ~/.ssh
##
## Move cargo home directory inside project dir
## so it can be cached
##
- export CARGO_HOME="$(realpath ./.cargo)"
- mkdir -p $CARGO_HOME
## Install build prerequisites
- wget http://aptly.cs.int/public/cs-repo.key -O - | sudo apt-key add -
- sudo add-apt-repository "deb http://aptly.cs.int/public xenial int"
- sudo apt-get install -y libnanomsg5 libnanomsg-dev
cache:
paths:
- .cargo
- target
stages:
- test
build:
stage: test
tags:
- rust
except:
- master
script:
- cargo test --all