This repository has been archived on 2025-03-19. You can view files and clone it, but cannot push or open issues or pull requests.
batalert/.gitlab-ci.yml
2024-04-23 02:11:20 -06:00

25 lines
485 B
YAML

# 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 toolchain install stable
- echo $CARGO_HOME
# - rustup update
- cargo install cargo-deb
- cargo deb
- ls .
- ls ..
# The files which are to be made available in GitLab
artifacts:
paths:
- build/*