diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..a3e1ef7 --- /dev/null +++ b/.gitlab-ci.yml @@ -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/*