Added GitLab CI Pipeline for ubuntu deb package

This commit is contained in:
Marcel Kapfer 2021-12-02 21:47:13 +01:00
parent 2152e62862
commit f7bd5a8457
Signed by: mmk2410
GPG Key ID: CADE6F0C09F21B09
1 changed files with 25 additions and 0 deletions

25
.gitlab-ci.yml Normal file
View File

@ -0,0 +1,25 @@
default:
image: ubuntu:impish
variables:
PACKAGE: "intellij-idea-ultimate"
TZ: UTC
DEBIAN_FRONTEND: noninteractive
stages:
- build
build-job:
stage: build
script:
- apt update && apt install -y git devscripts debhelper
- export VERSION=$(git describe --abbrev=0 --tags | cut -d'v' -f2)
- cd "$PACKAGE"_"$VERSION" || exit
- debuild -us -uc
- export PACKAGE_FILE="$PACKAGE"_"$VERSION"-1_all.deb
artifacts:
name: $PACKAGE_FILE
paths:
- ./*.deb
rules:
- if: $CI_COMMIT_TAG