2020-01-01 19:10:52 +01:00
|
|
|
image:
|
|
|
|
name: cirrusci/flutter
|
|
|
|
|
|
|
|
stages:
|
|
|
|
- coverage
|
|
|
|
- publish
|
|
|
|
|
|
|
|
code_analyze:
|
|
|
|
stage: coverage
|
|
|
|
dependencies: []
|
|
|
|
script:
|
|
|
|
- flutter analyze
|
|
|
|
|
|
|
|
#test:
|
|
|
|
# stage: coverage
|
|
|
|
# dependencies: []
|
|
|
|
# script:
|
|
|
|
# - flutter test
|
|
|
|
|
|
|
|
build_web:
|
|
|
|
stage: coverage
|
|
|
|
image: cirrusci/flutter:beta
|
|
|
|
script:
|
|
|
|
- flutter config --enable-web
|
|
|
|
- flutter build web --release
|
|
|
|
artifacts:
|
|
|
|
paths:
|
|
|
|
- build/web/
|
|
|
|
|
|
|
|
|
2020-01-03 00:15:12 +01:00
|
|
|
build_android_fdroid:
|
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-01 19:10:52 +01:00
|
|
|
- flutter build apk --release
|
|
|
|
artifacts:
|
|
|
|
when: on_success
|
|
|
|
paths:
|
|
|
|
- build/app/outputs/apk/release/app-release.apk
|
|
|
|
|
|
|
|
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:
|
|
|
|
- master
|