2020-01-01 19:10:52 +01:00
|
|
|
image:
|
2020-05-03 11:51:17 +02:00
|
|
|
name: registry.gitlab.com/famedly/containers/flutter-dockerimages:stable
|
2020-01-01 19:10:52 +01:00
|
|
|
|
2020-02-19 17:32:34 +01:00
|
|
|
variables:
|
|
|
|
GIT_SUBMODULE_STRATEGY: recursive
|
|
|
|
|
2020-01-01 19:10:52 +01:00
|
|
|
stages:
|
|
|
|
- coverage
|
|
|
|
- publish
|
|
|
|
|
|
|
|
code_analyze:
|
|
|
|
stage: coverage
|
|
|
|
dependencies: []
|
|
|
|
script:
|
2020-05-22 12:21:16 +02:00
|
|
|
- flutter format lib/ test/ test_driver/ --set-exit-if-changed
|
2020-01-01 19:10:52 +01:00
|
|
|
- flutter analyze
|
|
|
|
|
2020-01-04 09:37:09 +01:00
|
|
|
test:
|
|
|
|
stage: coverage
|
|
|
|
dependencies: []
|
|
|
|
script:
|
|
|
|
- flutter test
|
2020-01-01 19:10:52 +01:00
|
|
|
|
|
|
|
build_web:
|
|
|
|
stage: coverage
|
2020-05-03 11:51:17 +02:00
|
|
|
image: registry.gitlab.com/famedly/containers/flutter-dockerimages:beta
|
2020-01-01 19:10:52 +01:00
|
|
|
script:
|
2020-02-19 17:23:03 +01:00
|
|
|
- sudo apt update
|
|
|
|
- sudo apt install curl -y
|
2020-02-15 08:55:41 +01:00
|
|
|
- rm -r assets/js/package
|
2020-05-20 09:10:13 +02: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 17:07:46 +02: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 15:07:29 +01:00
|
|
|
- flutter pub get
|
|
|
|
- flutter clean
|
2020-04-08 12:38:52 +02:00
|
|
|
- flutter build web --release --verbose --dart-define=FLUTTER_WEB_USE_SKIA=true
|
2020-01-01 19:10:52 +01:00
|
|
|
artifacts:
|
|
|
|
paths:
|
|
|
|
- build/web/
|
|
|
|
|
|
|
|
|
2020-05-23 10:52:11 +02:00
|
|
|
build_android_debug:
|
|
|
|
stage: coverage
|
|
|
|
script:
|
|
|
|
- truncate -s $(head -n -2 android/app/build.gradle | wc -c) android/app/build.gradle
|
2020-05-23 11:05:05 +02:00
|
|
|
- flutter build apk --debug -v
|
2020-05-23 10:52:11 +02:00
|
|
|
artifacts:
|
|
|
|
when: on_success
|
|
|
|
paths:
|
2020-05-23 11:05:05 +02:00
|
|
|
- build/app/outputs/apk/debug/app-debug.apk
|
2020-05-23 10:52:11 +02:00
|
|
|
except:
|
|
|
|
- master
|
|
|
|
|
|
|
|
|
2020-02-11 07:58:50 +01:00
|
|
|
build_android_apk:
|
2020-01-01 19:10:52 +01:00
|
|
|
stage: coverage
|
|
|
|
script:
|
2020-01-03 00:15:12 +01: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 17:35:36 +01:00
|
|
|
- cd android/app && echo $GOOGLE_SERVICES >> google-services.json && cd ../..
|
2020-01-01 19:10:52 +01:00
|
|
|
- flutter build apk --release
|
|
|
|
artifacts:
|
|
|
|
when: on_success
|
|
|
|
paths:
|
|
|
|
- build/app/outputs/apk/release/app-release.apk
|
2020-01-03 13:54:42 +01:00
|
|
|
only:
|
|
|
|
- master
|
2020-06-26 20:35:19 +02:00
|
|
|
- tags
|
2020-01-03 13:54:42 +01:00
|
|
|
|
2020-02-11 07:58:50 +01: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
|
|
|
|
artifacts:
|
|
|
|
when: on_success
|
|
|
|
paths:
|
|
|
|
- build/app/outputs/bundle/release/app-release.aab
|
|
|
|
only:
|
|
|
|
- master
|
|
|
|
|
2020-05-20 21:33:36 +02:00
|
|
|
upload_to_fdroid_repo:
|
|
|
|
stage: publish
|
|
|
|
before_script:
|
|
|
|
##
|
|
|
|
## Install ssh-agent if not already installed.
|
|
|
|
##
|
2020-06-26 20:35:19 +02:00
|
|
|
- 'which ssh-agent || (sudo apt-get update -y && sudo apt-get install openssh-client -y )'
|
2020-05-20 21:33:36 +02:00
|
|
|
##
|
|
|
|
## Install rsync if not already installed.
|
|
|
|
##
|
2020-06-26 20:35:19 +02:00
|
|
|
- 'which rsync || (sudo apt-get update -y && sudo apt-get install rsync -y )'
|
2020-05-20 21:33:36 +02:00
|
|
|
##
|
2020-07-24 14:31:57 +02:00
|
|
|
## Install pcregrep if not already installed.
|
|
|
|
##
|
|
|
|
- 'which pcregrep || (sudo apt-get update -y && sudo apt-get install pcregrep -y )'
|
|
|
|
##
|
2020-05-20 21:33:36 +02: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
|
|
|
|
script:
|
|
|
|
- export UPDATE_VERSION=$(pcregrep -o1 'version:\\s([0-9]*\\.[0-9]*\\.[0-9]*)\\+[0-9]*' pubspec.yaml)
|
|
|
|
- mv app-release.apk "${UPDATE_VERSION}.apk"
|
|
|
|
- cd build/app/outputs/apk/release/ && rsync -rav -e ssh ./ fluffy@fdroid.nordgedanken.dev:/fdroid/repo
|
|
|
|
- ssh fluffy@fdroid.nordgedanken.dev "cd fdroid && fdroid update"
|
|
|
|
dependencies:
|
|
|
|
- build_android_apk
|
|
|
|
only:
|
|
|
|
- tags
|
|
|
|
|
2020-01-01 19:10:52 +01: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 ./
|
|
|
|
dependencies:
|
|
|
|
- build_web
|
|
|
|
artifacts:
|
|
|
|
paths:
|
|
|
|
- public
|
|
|
|
only:
|
2020-01-03 13:05:02 +01:00
|
|
|
- master
|