✨ (CI/CD) Use intellij-idea-pkg-image Docker base image
This commit is contained in:
parent
0f0e171334
commit
c11966727c
1 changed files with 2 additions and 10 deletions
|
@ -1,10 +1,9 @@
|
||||||
default:
|
default:
|
||||||
image: ubuntu:lunar
|
image: registry.gitlab.com/mmk2410/intellij-idea-pkg-image:lunar
|
||||||
|
|
||||||
variables:
|
variables:
|
||||||
PACKAGE: "intellij-idea-ultimate"
|
PACKAGE: "intellij-idea-ultimate"
|
||||||
TZ: UTC
|
TZ: UTC
|
||||||
DEBIAN_FRONTEND: noninteractive
|
|
||||||
NAME: "Marcel Kapfer"
|
NAME: "Marcel Kapfer"
|
||||||
EMAIL: "opensource@mmk2410.org"
|
EMAIL: "opensource@mmk2410.org"
|
||||||
|
|
||||||
|
@ -16,11 +15,6 @@ stages:
|
||||||
update-job:
|
update-job:
|
||||||
stage: autoupdate
|
stage: autoupdate
|
||||||
script:
|
script:
|
||||||
##
|
|
||||||
## Install necessary packages.
|
|
||||||
##
|
|
||||||
- apt update && apt install -y git devscripts debhelper libxml2-utils openssh-client
|
|
||||||
|
|
||||||
##
|
##
|
||||||
## Configure SSH key
|
## Configure SSH key
|
||||||
##
|
##
|
||||||
|
@ -49,7 +43,6 @@ update-job:
|
||||||
build-job:
|
build-job:
|
||||||
stage: build
|
stage: build
|
||||||
script:
|
script:
|
||||||
- apt update && apt install -y git devscripts debhelper
|
|
||||||
- export VERSION=$(git describe --abbrev=0 --tags | cut -d'v' -f2)
|
- export VERSION=$(git describe --abbrev=0 --tags | cut -d'v' -f2)
|
||||||
- cd "$PACKAGE"_"$VERSION" || exit
|
- cd "$PACKAGE"_"$VERSION" || exit
|
||||||
- debuild -us -uc
|
- debuild -us -uc
|
||||||
|
@ -62,10 +55,9 @@ build-job:
|
||||||
- if: $CI_COMMIT_TAG
|
- if: $CI_COMMIT_TAG
|
||||||
|
|
||||||
deploy-job:
|
deploy-job:
|
||||||
image: ubuntu:$UBUNTU_VERSION
|
image: registry.gitlab.com/mmk2410/intellij-idea-pkg-image:$UBUNTU_VERSION
|
||||||
stage: deploy
|
stage: deploy
|
||||||
script:
|
script:
|
||||||
- apt update && apt install -y git devscripts debhelper gnupg
|
|
||||||
- export VERSION=$(git describe --abbrev=0 --tags | cut -d'v' -f2)
|
- export VERSION=$(git describe --abbrev=0 --tags | cut -d'v' -f2)
|
||||||
- echo "$GPG_PRIVATE_KEY" | tr -d '\r' | gpg --import -
|
- echo "$GPG_PRIVATE_KEY" | tr -d '\r' | gpg --import -
|
||||||
- echo "$GPG_PUBLIC_KEY" | tr -d '\r' | gpg --import -
|
- echo "$GPG_PUBLIC_KEY" | tr -d '\r' | gpg --import -
|
||||||
|
|
Loading…
Reference in a new issue