Spectral/.gitlab-ci.yml

37 lines
1.2 KiB
YAML
Raw Normal View History

2018-08-02 10:40:49 +00:00
stages:
- build
2018-08-02 23:23:14 +00:00
- deploy
2018-08-02 10:40:49 +00:00
build-flatpak:
2018-09-17 13:16:49 +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
- cd flatpak
- flatpak-builder --force-clean --repo=repo build-dir org.eu.encom.spectral.yaml
- flatpak build-bundle repo spectral.flatpak org.eu.encom.spectral
2018-08-02 23:23:14 +00:00
- cd ../
artifacts:
paths:
- flatpak/spectral.flatpak
2018-10-14 02:26:50 +00:00
build-appimage:
2018-10-14 05:13:11 +00:00
image: ubuntu:bionic
2018-10-14 02:26:50 +00:00
stage: build
before_script:
- git submodule update --init --recursive
2018-10-14 05:13:11 +00:00
- sudo add-apt-repository ppa:beineri/opt-qt-5.11.1-bionic -y
- sudo apt-get update -qq
- sudo apt-get -y install qt511base qt511graphicaleffects qt511multimedia qt511quickcontrols2
- source /opt/qt511/bin/qt511-env.sh
- wget -c -nv "https://github.com/probonopd/linuxdeployqt/releases/download/continuous/linuxdeployqt-continuous-x86_64.AppImage"
- chmod a+x linuxdeployqt-continuous-x86_64.AppImage
2018-10-14 02:26:50 +00:00
script:
2018-10-14 05:13:11 +00:00
- qmake CONFIG+=release PREFIX=deploy
2018-10-14 02:26:50 +00:00
- make
- make install
- ./linuxdeployqt-continuous-x86_64.AppImage deploy/share/applications/org.eu.encom.spectral.desktop -appimage -qmldir=qml -qmldir=imports
artifacts:
paths:
- Spectral-x86_64.AppImage