Spectral/.gitlab-ci.yml

54 lines
1.2 KiB
YAML
Raw Normal View History

2018-08-02 10:40:49 +00:00
stages:
2018-08-02 19:15:24 +00:00
- preparation
2018-08-02 10:40:49 +00:00
- build
2018-08-02 19:15:24 +00:00
- 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
2018-07-11 11:16:28 +00:00
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 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-07-11 12:28:02 +00:00
- mkdir build && cd build
- qmake ../matrique.pro -spec linux-g++ CONFIG+=qtquickcompiler
- make -j4
artifacts:
paths:
2018-08-02 10:40:49 +00:00
- build/
build-flatpak:
2018-08-02 19:01:33 +00:00
image: black0/flatpak
2018-08-02 10:40:49 +00:00
stage: build
2018-08-02 19:01:33 +00:00
before_script:
- git submodule update --init --recursive
2018-08-02 10:40:49 +00:00
script:
2018-08-02 19:01:33 +00:00
- gpg2 -v --import <(echo "$GPG_SECRET_KEY")
- cd flatpak
- flatpak-builder --repo=/tmp/matrique-repo/public build-dir org.eu.encom.matrique.json --force-clean --gpg-sign=52986BF4D61350EC249F2E891B0DB3358FC5E4B2
2018-08-02 19:15:24 +00:00
deploy-flatpak:
image: fedora:latest
stage: deploy
before_script:
- git config --global user.name "$GIT_NAME"
- git config --global user.email "$GIT_EMAIL"
script:
2018-08-02 19:01:33 +00:00
- cd /tmp/matrique-repo
- git add -A
- git commit -m "$CI_COMMIT_MESSAGE"
2018-08-02 19:15:24 +00:00
- git push origin master