Delete gitlab-ci

This commit is contained in:
Ivan Fonarev 2023-10-28 20:30:39 +03:00
parent 02996575e9
commit 95a3a95418

View file

@ -1,33 +0,0 @@
# 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"
build-package:
stage: build
script:
- pwd
- mkdir -p ./builds/artifact
- sudo apt update
- sudo apt install -y build-essential devscripts dh-make
- dpkg-buildpackage -us -uc
- mv ../*.{deb,tar.xz,dsc,changes} ./builds/artifact
only:
- tags
artifacts:
paths:
- ./builds/artifact
artifact_download:
stage: build
script:
- 'curl --location --output ~/builds/downloaded_artifacts/artifacts.zip --header "PRIVATE-TOKEN: glpat-FxQCwwpab9YkmNHWPVXY" "https://gitlab.com/api/v4/projects/$CI_PROJECT_ID/jobs/artifacts/master/download?job=build-package&job_token=$CI_JOB_TOKEN"'
- cd ~/builds/downloaded_artifacts
- unzip artifacts.zip
- rm artifacts.zip
only:
- tags
needs: [build-package]