update pipeline
This commit is contained in:
parent
18ae36fbb3
commit
7c39ed1ab9
1 changed files with 23 additions and 0 deletions
23
.gitlab-ci.yml
Normal file
23
.gitlab-ci.yml
Normal file
|
@ -0,0 +1,23 @@
|
|||
# Is performed before the scripts in the stages step
|
||||
before_script:
|
||||
- source /etc/profile
|
||||
|
||||
# Defines stages which are to be executed
|
||||
stages:
|
||||
- build
|
||||
|
||||
# Stage "build"
|
||||
run-build:
|
||||
stage: build
|
||||
script:
|
||||
- apt-get -y install rustup
|
||||
- rustup update
|
||||
- cargo install cargo-deb
|
||||
- cargo deb
|
||||
- ls .
|
||||
- ls ..
|
||||
|
||||
# The files which are to be made available in GitLab
|
||||
artifacts:
|
||||
paths:
|
||||
- build/*
|
Reference in a new issue