2018-08-02 10:40:49 +00:00
|
|
|
stages:
|
2018-08-02 23:23:14 +00:00
|
|
|
- preparation
|
2018-08-02 10:40:49 +00:00
|
|
|
- build
|
2018-08-02 23:23:14 +00:00
|
|
|
- deploy
|
2018-07-11 11:16:28 +00:00
|
|
|
|
2018-08-02 23:23:14 +00:00
|
|
|
preparation-flatpak:
|
|
|
|
image: debian:latest
|
|
|
|
stage: preparation
|
|
|
|
before_script:
|
|
|
|
- mkdir -p tmp
|
|
|
|
- apt-get update
|
|
|
|
- apt-get install -y git
|
|
|
|
script:
|
|
|
|
- cd tmp
|
|
|
|
- git clone "https://$GIT_USERNAME:$GIT_PASSWORD@gitlab.com/b0/matrique-repo"
|
|
|
|
- cd ../
|
|
|
|
artifacts:
|
|
|
|
paths:
|
|
|
|
- tmp/
|
|
|
|
|
2018-08-02 10:40:49 +00:00
|
|
|
build-native:
|
|
|
|
image: rabits/qt:5.11-desktop
|
2018-07-11 11:16:28 +00:00
|
|
|
stage: build
|
2018-08-02 23:23:14 +00:00
|
|
|
cache: {}
|
2018-08-02 10:40:49 +00:00
|
|
|
before_script:
|
2018-07-11 12:28:02 +00:00
|
|
|
- git submodule update --init --recursive
|
2018-08-02 10:40:49 +00:00
|
|
|
script:
|
2018-08-02 23:23:14 +00:00
|
|
|
- mkdir -p build && cd build
|
2018-07-11 12:28:02 +00:00
|
|
|
- qmake ../matrique.pro -spec linux-g++ CONFIG+=qtquickcompiler
|
|
|
|
- make -j4
|
2018-08-02 10:40:49 +00:00
|
|
|
|
|
|
|
build-flatpak:
|
2018-08-02 23:23:14 +00:00
|
|
|
image: black0/flatpak
|
2018-08-02 10:40:49 +00:00
|
|
|
stage: build
|
2018-08-02 23:23:14 +00:00
|
|
|
before_script:
|
|
|
|
- git submodule update --init --recursive
|
2018-08-02 10:40:49 +00:00
|
|
|
script:
|
2018-08-02 23:23:14 +00:00
|
|
|
- gpg2 -v --import <(echo "$GPG_SECRET_KEY")
|
|
|
|
- cd flatpak
|
2018-08-03 14:07:15 +00:00
|
|
|
- flatpak-builder --repo=../tmp/matrique-repo/public build-dir org.eu.encom.matrique.json --force-clean --gpg-sign=52986BF4D61350EC249F2E891B0DB3358FC5E4B2 -s="$CI_COMMIT_TITLE" -b="$CI_COMMIT_DESCRIPTION"
|
2018-08-02 23:23:14 +00:00
|
|
|
- cd ../
|
|
|
|
artifacts:
|
|
|
|
paths:
|
|
|
|
- tmp/
|
|
|
|
|
|
|
|
deploy-flatpak:
|
|
|
|
only:
|
|
|
|
- master
|
|
|
|
image: debian:latest
|
|
|
|
stage: deploy
|
|
|
|
before_script:
|
|
|
|
- apt-get update
|
|
|
|
- apt-get install -y git
|
|
|
|
- git config --global user.name "$GIT_NAME"
|
|
|
|
- git config --global user.email "$GIT_EMAIL"
|
|
|
|
script:
|
|
|
|
- cd tmp/matrique-repo
|
|
|
|
- git add -A
|
|
|
|
- git commit -m "$CI_COMMIT_MESSAGE"
|
|
|
|
- git push origin master
|