famedlysdk/.gitlab-ci.yml

37 lines
719 B
YAML
Raw Normal View History

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
- publishdocs
2019-06-09 10:16:48 +00:00
variables:
LC_ALL: "en_US.UTF-8"
LANG: "en_US.UTF-8"
coverage:
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-06-09 12:33:25 +00:00
- sudo apt-get update -qq && sudo apt-get install -qq apt-transport-https curl gnupg lcov git
- ./scripts/test.sh
- ./scripts/coverage.sh
- flutter pub pub publish --dry-run
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 12:33:25 +00:00
- dartdoc
2019-06-09 12:27:00 +00:00
artifacts:
paths:
2019-06-09 12:34:28 +00:00
- doc/api/
2019-06-09 12:27:00 +00:00
publishdocs:
2019-06-09 12:28:39 +00:00
stage: publishdocs
2019-06-09 12:19:49 +00:00
image: ruby:2.3
script:
2019-06-09 12:34:28 +00:00
- bundle exec jekyll build -d test
- bundle exec jekyll build -d public
2019-06-09 12:27:00 +00:00
dependencies:
2019-06-09 12:34:28 +00:00
- builddocs