Split work.
This commit is contained in:
parent
9ba70a8ea1
commit
708f260608
|
@ -1,5 +1,21 @@
|
||||||
stages:
|
stages:
|
||||||
|
- preparation
|
||||||
- build
|
- build
|
||||||
|
- deploy
|
||||||
|
|
||||||
|
cache:
|
||||||
|
untracked: true
|
||||||
|
key: "$CI_PROJECT_ID"
|
||||||
|
paths:
|
||||||
|
- /tmp/matrique-repo
|
||||||
|
|
||||||
|
preparation-flatpak:
|
||||||
|
image: fedora:latest
|
||||||
|
stage: preparation
|
||||||
|
script:
|
||||||
|
- cd /tmp
|
||||||
|
- git clone "https://$GIT_USERNAME:$GIT_PASSWORD@gitlab.com/b0/matrique-repo"
|
||||||
|
- cd /builds/b0/matrique
|
||||||
|
|
||||||
build-native:
|
build-native:
|
||||||
image: rabits/qt:5.11-desktop
|
image: rabits/qt:5.11-desktop
|
||||||
|
@ -20,16 +36,19 @@ build-flatpak:
|
||||||
stage: build
|
stage: build
|
||||||
before_script:
|
before_script:
|
||||||
- git submodule update --init --recursive
|
- git submodule update --init --recursive
|
||||||
- cd /tmp
|
|
||||||
- git config --global user.name "$GIT_NAME"
|
|
||||||
- git config --global user.email "$GIT_EMAIL"
|
|
||||||
- git clone "https://$GIT_USERNAME:$GIT_PASSWORD@gitlab.com/b0/matrique-repo"
|
|
||||||
- cd /builds/b0/matrique
|
|
||||||
script:
|
script:
|
||||||
- gpg2 -v --import <(echo "$GPG_SECRET_KEY")
|
- gpg2 -v --import <(echo "$GPG_SECRET_KEY")
|
||||||
- cd flatpak
|
- cd flatpak
|
||||||
- flatpak-builder --repo=/tmp/matrique-repo/public build-dir org.eu.encom.matrique.json --force-clean --gpg-sign=52986BF4D61350EC249F2E891B0DB3358FC5E4B2
|
- flatpak-builder --repo=/tmp/matrique-repo/public build-dir org.eu.encom.matrique.json --force-clean --gpg-sign=52986BF4D61350EC249F2E891B0DB3358FC5E4B2
|
||||||
|
|
||||||
|
deploy-flatpak:
|
||||||
|
image: fedora:latest
|
||||||
|
stage: deploy
|
||||||
|
before_script:
|
||||||
|
- git config --global user.name "$GIT_NAME"
|
||||||
|
- git config --global user.email "$GIT_EMAIL"
|
||||||
|
script:
|
||||||
- cd /tmp/matrique-repo
|
- cd /tmp/matrique-repo
|
||||||
- git add -A
|
- git add -A
|
||||||
- git commit -m "$CI_COMMIT_MESSAGE"
|
- git commit -m "$CI_COMMIT_MESSAGE"
|
||||||
- git push origin master
|
- git push origin master
|
Loading…
Reference in New Issue