update pipeline

This commit is contained in:
Penelope Gwen 2024-04-23 02:05:20 -06:00
parent 18ae36fbb3
commit 7c39ed1ab9

23
.gitlab-ci.yml Normal file
View 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/*