From 7c39ed1ab9e5af20b231280bc2aa40bb4f181f66 Mon Sep 17 00:00:00 2001 From: Penelope Gwen Date: Tue, 23 Apr 2024 02:05:20 -0600 Subject: [PATCH] update pipeline --- .gitlab-ci.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .gitlab-ci.yml 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/*