2020-08-31 18:44:32 +00:00
|
|
|
image:
|
2020-05-03 09:51:17 +00:00
|
|
|
name: registry.gitlab.com/famedly/containers/flutter-dockerimages:stable
|
2020-01-01 18:10:52 +00:00
|
|
|
|
2020-02-19 16:32:34 +00:00
|
|
|
variables:
|
|
|
|
GIT_SUBMODULE_STRATEGY: recursive
|
|
|
|
|
2020-10-04 14:06:34 +00:00
|
|
|
.shared_windows_runners:
|
|
|
|
tags:
|
|
|
|
- shared-windows
|
|
|
|
- windows
|
|
|
|
- windows-1809
|
|
|
|
|
2020-01-01 18:10:52 +00:00
|
|
|
stages:
|
|
|
|
- coverage
|
|
|
|
- publish
|
|
|
|
|
|
|
|
code_analyze:
|
|
|
|
stage: coverage
|
|
|
|
dependencies: []
|
|
|
|
script:
|
2020-05-22 10:21:16 +00:00
|
|
|
- flutter format lib/ test/ test_driver/ --set-exit-if-changed
|
2020-01-01 18:10:52 +00:00
|
|
|
- flutter analyze
|
|
|
|
|
2020-01-04 08:37:09 +00:00
|
|
|
test:
|
|
|
|
stage: coverage
|
|
|
|
dependencies: []
|
|
|
|
script:
|
|
|
|
- flutter test
|
2020-01-01 18:10:52 +00:00
|
|
|
|
|
|
|
build_web:
|
|
|
|
stage: coverage
|
2020-05-03 09:51:17 +00:00
|
|
|
image: registry.gitlab.com/famedly/containers/flutter-dockerimages:beta
|
2020-01-01 18:10:52 +00:00
|
|
|
script:
|
2020-02-19 16:23:03 +00:00
|
|
|
- sudo apt update
|
|
|
|
- sudo apt install curl -y
|
2020-02-15 07:55:41 +00:00
|
|
|
- rm -r assets/js/package
|
2020-09-13 08:30:11 +00:00
|
|
|
- cd assets/js/ && curl -L 'https://gitlab.com/famedly/libraries/olm/-/jobs/artifacts/master/download?job=build_js' > olm.zip && cd ../../
|
|
|
|
- cd assets/js/ && unzip olm.zip && cd ../../
|
|
|
|
- cd assets/js/ && rm olm.zip && cd ../../
|
|
|
|
- cd assets/js/ && mv javascript package && cd ../../
|
2020-07-18 15:07:46 +00:00
|
|
|
- cd web/ && rm sql-wasm.js sql-wasm.wasm && cd ../
|
|
|
|
- cd web/ && curl -L 'https://github.com/sql-js/sql.js/releases/latest/download/sqljs-wasm.zip' > sqljs-wasm.zip && cd ../
|
|
|
|
- cd web/ && unzip sqljs-wasm.zip && cd ../
|
|
|
|
- cd web/ && rm sqljs-wasm.zip && cd ../
|
2020-01-07 14:07:29 +00:00
|
|
|
- flutter clean
|
2020-09-03 09:44:42 +00:00
|
|
|
- flutter pub get
|
2020-08-13 11:01:15 +00:00
|
|
|
- flutter build web --release --verbose
|
2020-09-13 08:30:11 +00:00
|
|
|
# upload elsewhere, if wanted
|
2020-01-01 18:10:52 +00:00
|
|
|
artifacts:
|
|
|
|
paths:
|
|
|
|
- build/web/
|
|
|
|
|
2020-10-04 14:06:34 +00:00
|
|
|
build_windows:
|
|
|
|
extends:
|
|
|
|
- .shared_windows_runners
|
|
|
|
stage: publish
|
|
|
|
script:
|
|
|
|
# Install chocolately
|
|
|
|
- Set-ExecutionPolicy Bypass -Scope Process
|
|
|
|
- Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
|
|
|
|
- choco install git -y
|
|
|
|
- choco install visualstudio2019community -y --package-parameters "--add Microsoft.VisualStudio.Product.BuildTools --includeRecommended --includeOptional --passive --locale en-US"
|
|
|
|
- cd ..; git clone https://github.com/flutter/flutter.git -b dev; $env:path += ";C:\GitLab-Runner\builds\ChristianPauly\flutter\bin"; cd fluffychat-flutter
|
|
|
|
- flutter doctor
|
|
|
|
- flutter config --enable-windows-desktop
|
|
|
|
- flutter build windows
|
|
|
|
needs: []
|
|
|
|
artifacts:
|
|
|
|
paths:
|
|
|
|
- build/windows/runner/Release/
|
|
|
|
name: "Binairies"
|
|
|
|
only:
|
|
|
|
- main
|
|
|
|
- tags
|
2020-01-01 18:10:52 +00:00
|
|
|
|
2020-09-13 08:30:11 +00:00
|
|
|
build_android_debug:
|
2020-05-23 08:52:11 +00:00
|
|
|
stage: coverage
|
|
|
|
script:
|
|
|
|
- truncate -s $(head -n -2 android/app/build.gradle | wc -c) android/app/build.gradle
|
2020-05-23 09:05:05 +00:00
|
|
|
- flutter build apk --debug -v
|
2020-05-23 08:52:11 +00:00
|
|
|
artifacts:
|
|
|
|
when: on_success
|
|
|
|
paths:
|
2020-05-23 09:05:05 +00:00
|
|
|
- build/app/outputs/apk/debug/app-debug.apk
|
2020-05-23 08:52:11 +00:00
|
|
|
except:
|
2020-09-09 12:16:40 +00:00
|
|
|
- main
|
2020-05-23 08:52:11 +00:00
|
|
|
|
|
|
|
|
2020-02-11 06:58:50 +00:00
|
|
|
build_android_apk:
|
2020-01-01 18:10:52 +00:00
|
|
|
stage: coverage
|
|
|
|
script:
|
2020-01-02 23:15:12 +00:00
|
|
|
- cd android && echo $FDROID_KEY | base64 --decode --ignore-garbage > key.jks && cd ..
|
|
|
|
- cd android && echo "storePassword=${FDROID_KEY_PASS}" >> key.properties && cd ..
|
|
|
|
- cd android && echo "keyPassword=${FDROID_KEY_PASS}" >> key.properties && cd ..
|
|
|
|
- cd android && echo "keyAlias=key" >> key.properties && cd ..
|
|
|
|
- cd android && echo "storeFile=../key.jks" >> key.properties && cd ..
|
2020-01-03 16:35:36 +00:00
|
|
|
- cd android/app && echo $GOOGLE_SERVICES >> google-services.json && cd ../..
|
2020-09-03 09:44:42 +00:00
|
|
|
- flutter pub get
|
2020-01-01 18:10:52 +00:00
|
|
|
- flutter build apk --release
|
2020-09-13 08:30:11 +00:00
|
|
|
- mkdir -p build/android
|
|
|
|
- cp build/app/outputs/apk/release/app-release.apk build/android/
|
2020-01-01 18:10:52 +00:00
|
|
|
artifacts:
|
|
|
|
when: on_success
|
|
|
|
paths:
|
2020-09-13 08:30:11 +00:00
|
|
|
- build/android/app-release.apk
|
2020-01-03 12:54:42 +00:00
|
|
|
only:
|
2020-09-09 12:16:40 +00:00
|
|
|
- main
|
2020-06-26 18:35:19 +00:00
|
|
|
- tags
|
2020-01-03 12:54:42 +00:00
|
|
|
|
2020-02-11 06:58:50 +00:00
|
|
|
|
|
|
|
build_android_appbundle:
|
|
|
|
stage: coverage
|
|
|
|
script:
|
|
|
|
- cd android && echo $FDROID_KEY | base64 --decode --ignore-garbage > key.jks && cd ..
|
|
|
|
- cd android && echo "storePassword=${FDROID_KEY_PASS}" >> key.properties && cd ..
|
|
|
|
- cd android && echo "keyPassword=${FDROID_KEY_PASS}" >> key.properties && cd ..
|
|
|
|
- cd android && echo "keyAlias=key" >> key.properties && cd ..
|
|
|
|
- cd android && echo "storeFile=../key.jks" >> key.properties && cd ..
|
|
|
|
- cd android/app && echo $GOOGLE_SERVICES >> google-services.json && cd ../..
|
|
|
|
- flutter build appbundle --target-platform android-arm,android-arm64,android-x64
|
2020-09-13 08:30:11 +00:00
|
|
|
- mkdir -p build/android
|
|
|
|
- cp build/app/outputs/bundle/release/app-release.aab build/android/
|
2020-08-31 18:44:32 +00:00
|
|
|
artifacts:
|
|
|
|
when: on_success
|
|
|
|
paths:
|
2020-09-13 08:30:11 +00:00
|
|
|
- build/android/app-release.aab
|
2020-08-31 18:44:32 +00:00
|
|
|
only:
|
2020-09-09 12:16:40 +00:00
|
|
|
- main
|
2020-08-31 18:44:32 +00:00
|
|
|
|
|
|
|
|
2020-05-20 19:33:36 +00:00
|
|
|
upload_to_fdroid_repo:
|
|
|
|
stage: publish
|
|
|
|
before_script:
|
|
|
|
##
|
|
|
|
## Install ssh-agent if not already installed.
|
|
|
|
##
|
2020-06-26 18:35:19 +00:00
|
|
|
- 'which ssh-agent || (sudo apt-get update -y && sudo apt-get install openssh-client -y )'
|
2020-05-20 19:33:36 +00:00
|
|
|
##
|
|
|
|
## Install rsync if not already installed.
|
|
|
|
##
|
2020-06-26 18:35:19 +00:00
|
|
|
- 'which rsync || (sudo apt-get update -y && sudo apt-get install rsync -y )'
|
2020-05-20 19:33:36 +00:00
|
|
|
##
|
2020-07-24 12:31:57 +00:00
|
|
|
## Install pcregrep if not already installed.
|
|
|
|
##
|
|
|
|
- 'which pcregrep || (sudo apt-get update -y && sudo apt-get install pcregrep -y )'
|
|
|
|
##
|
2020-05-20 19:33:36 +00:00
|
|
|
## Run ssh-agent (inside the build environment)
|
|
|
|
##
|
|
|
|
- eval $(ssh-agent -s)
|
|
|
|
- echo "$SSH_PRIVATE_KEY" | tr -d '\r' | ssh-add -
|
|
|
|
- mkdir -p ~/.ssh
|
|
|
|
- chmod 700 ~/.ssh
|
2020-09-13 17:33:49 +00:00
|
|
|
- ssh-keyscan -t rsa fdroid.nordgedanken.dev >> ~/.ssh/known_hosts
|
2020-05-20 19:33:36 +00:00
|
|
|
script:
|
2020-08-31 18:44:32 +00:00
|
|
|
- mkdir -p upload
|
2020-09-13 08:30:11 +00:00
|
|
|
- cp build/android/* upload/
|
|
|
|
- cd build/android/
|
2020-10-02 15:55:31 +00:00
|
|
|
- export UPDATE_VERSION=$(pcregrep -o1 'version:\\s([0-9]*\\.[0-9]*\\.[0-9]*)\\+[0-9]*' pubspec.yaml) && mv app-release.apk "${UPDATE_VERSION}.apk"
|
2020-08-31 18:44:32 +00:00
|
|
|
- rsync -rav -e ssh ./ fluffy@fdroid.nordgedanken.dev:/fdroid/repo
|
2020-10-02 15:55:31 +00:00
|
|
|
- ssh fluffy@fdroid.nordgedanken.dev "cd fdroid && mount binfmt_misc -t binfmt_misc /proc/sys/fs/binfmt_misc && fdroid update"
|
2020-10-12 08:09:47 +00:00
|
|
|
needs: ["build_android_apk"]
|
2020-05-20 19:33:36 +00:00
|
|
|
only:
|
|
|
|
- tags
|
|
|
|
|
2020-01-01 18:10:52 +00:00
|
|
|
pages:
|
|
|
|
stage: publish
|
|
|
|
image: ruby:2.3
|
|
|
|
script:
|
|
|
|
- rm assets -r
|
|
|
|
- cp _config.yml ./build/web/
|
|
|
|
- cp Gemfile ./build/web/
|
|
|
|
- cp Gemfile.lock ./build/web/
|
|
|
|
- cd build/web/ && bundle install && cd ../../
|
|
|
|
- cd build/web/ && bundle exec jekyll build -d public && cd ../../
|
|
|
|
- mv build/web/public ./
|
2020-10-12 08:09:47 +00:00
|
|
|
needs: ["build_web"]
|
2020-01-01 18:10:52 +00:00
|
|
|
artifacts:
|
|
|
|
paths:
|
|
|
|
- public
|
|
|
|
only:
|
2020-09-09 12:16:40 +00:00
|
|
|
- main
|
2020-10-06 14:31:52 +00:00
|
|
|
|
|
|
|
build_linux:
|
|
|
|
stage: coverage
|
2020-10-06 14:46:04 +00:00
|
|
|
image: registry.gitlab.com/famedly/containers/flutter-dockerimages:dev
|
2020-10-06 14:37:27 +00:00
|
|
|
dependencies: []
|
2020-10-04 16:39:07 +00:00
|
|
|
script:
|
2020-10-06 15:00:08 +00:00
|
|
|
- sudo apt update
|
|
|
|
- sudo apt install clang cmake ninja-build pkg-config libgtk-3-dev libblkid-dev
|
2020-10-06 14:31:52 +00:00
|
|
|
- flutter config --enable-linux-desktop
|
2020-10-06 14:37:27 +00:00
|
|
|
- flutter pub get
|
2020-10-06 14:31:52 +00:00
|
|
|
- flutter build linux --release
|
2020-10-04 16:39:07 +00:00
|
|
|
artifacts:
|
|
|
|
when: on_success
|
2020-10-06 14:31:52 +00:00
|
|
|
paths:
|
|
|
|
- build/linux/release/bundle/
|
|
|
|
only:
|
|
|
|
- main
|
2020-10-04 16:39:07 +00:00
|
|
|
|
|
|
|
snap:publish:
|
|
|
|
stage: publish
|
2020-10-04 18:01:39 +00:00
|
|
|
image: "cibuilds/snapcraft:core18"
|
2020-10-04 16:39:07 +00:00
|
|
|
only:
|
|
|
|
- tags
|
|
|
|
script:
|
|
|
|
- snapcraft
|
|
|
|
- echo $SNAPCRAFT_LOGIN_FILE | base64 --decode --ignore-garbage > snapcraft.login
|
|
|
|
- snapcraft login --with snapcraft.login
|
|
|
|
- snapcraft push --release=stable *.snap
|
|
|
|
- snapcraft logout
|
|
|
|
artifacts:
|
|
|
|
paths:
|
|
|
|
- './*.snap'
|
|
|
|
when: on_success
|
2020-10-06 14:46:04 +00:00
|
|
|
expire_in: 1 week
|
2020-10-12 08:09:47 +00:00
|
|
|
needs: []
|