2019-06-09 10:16:48 +00:00
|
|
|
stages:
|
2019-06-09 12:33:25 +00:00
|
|
|
- coverage
|
2019-06-09 12:27:00 +00:00
|
|
|
- builddocs
|
2019-06-09 18:30:50 +00:00
|
|
|
- deploy
|
2019-06-09 10:16:48 +00:00
|
|
|
|
|
|
|
variables:
|
2019-06-09 13:43:08 +00:00
|
|
|
JEKYLL_ENV: production
|
2019-06-09 10:16:48 +00:00
|
|
|
|
|
|
|
coverage:
|
2020-02-15 07:48:41 +00:00
|
|
|
image: debian:testing
|
|
|
|
stage: coverage
|
|
|
|
coverage: '/^\s+lines.+: (\d+.\d*%)/'
|
|
|
|
dependencies: []
|
|
|
|
script:
|
|
|
|
- apt update
|
|
|
|
- apt install -y curl gnupg2 git
|
2020-05-06 10:13:30 +00:00
|
|
|
- curl https://storage.googleapis.com/dart-archive/channels/stable/release/2.7.2/linux_packages/dart_2.7.2-1_amd64.deb > dart.deb
|
|
|
|
- apt install -y ./dart.deb
|
2020-02-15 07:48:41 +00:00
|
|
|
- apt update
|
2020-05-06 10:13:30 +00:00
|
|
|
- apt install -y chromium lcov libolm3
|
2020-02-15 07:48:41 +00:00
|
|
|
- ln -s /usr/lib/dart/bin/pub /usr/bin/
|
|
|
|
- useradd -m test
|
|
|
|
- chown -R 'test:' '.'
|
|
|
|
- chmod +x ./prepare.sh
|
|
|
|
- chmod +x ./test.sh
|
|
|
|
- su -c ./prepare.sh test
|
|
|
|
- su -c ./test.sh test
|
|
|
|
|
|
|
|
coverage_without_olm:
|
2019-06-09 12:33:25 +00:00
|
|
|
image: cirrusci/flutter
|
2019-06-09 10:16:48 +00:00
|
|
|
stage: coverage
|
|
|
|
coverage: '/^\s+lines.+: (\d+.\d*%)/'
|
|
|
|
dependencies: []
|
|
|
|
script:
|
2019-10-04 09:44:32 +00:00
|
|
|
- flutter pub get
|
|
|
|
- flutter pub run test
|
2019-06-09 12:33:25 +00:00
|
|
|
|
2019-06-25 14:30:13 +00:00
|
|
|
code_analyze:
|
|
|
|
image: cirrusci/flutter
|
|
|
|
stage: coverage
|
|
|
|
dependencies: []
|
|
|
|
script:
|
|
|
|
- flutter analyze
|
|
|
|
|
2019-06-09 12:27:00 +00:00
|
|
|
builddocs:
|
|
|
|
stage: builddocs
|
2019-06-09 12:19:49 +00:00
|
|
|
image: cirrusci/flutter
|
|
|
|
script:
|
2019-06-09 18:26:54 +00:00
|
|
|
- dartdoc --exclude "dart:async,dart:collection,dart:convert,dart:core,dart:developer,dart:io,dart:isolate,dart:math,dart:typed_data,dart:ui"
|
2019-06-09 12:27:00 +00:00
|
|
|
artifacts:
|
|
|
|
paths:
|
2019-06-09 12:34:28 +00:00
|
|
|
- doc/api/
|
2019-06-09 13:17:31 +00:00
|
|
|
only:
|
2019-06-25 14:30:13 +00:00
|
|
|
- master
|
2019-06-09 12:34:28 +00:00
|
|
|
|
2019-06-09 18:30:50 +00:00
|
|
|
pages:
|
|
|
|
stage: deploy
|
2019-06-09 12:19:49 +00:00
|
|
|
image: ruby:2.3
|
|
|
|
script:
|
2019-06-09 17:34:42 +00:00
|
|
|
- mv doc/api/* ./
|
2019-06-09 13:43:08 +00:00
|
|
|
- bundle install
|
2019-06-09 12:34:28 +00:00
|
|
|
- bundle exec jekyll build -d public
|
2019-06-09 12:27:00 +00:00
|
|
|
dependencies:
|
2019-06-09 13:17:31 +00:00
|
|
|
- builddocs
|
|
|
|
artifacts:
|
|
|
|
paths:
|
2019-06-25 14:30:13 +00:00
|
|
|
- public
|
2019-06-09 13:17:31 +00:00
|
|
|
only:
|
2020-01-30 13:11:18 +00:00
|
|
|
- master
|