famedlysdk/.gitlab-ci.yml

101 lines
2.2 KiB
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
2019-06-09 18:30:50 +00:00
- deploy
2019-06-09 10:16:48 +00:00
coverage:
tags:
- linux
stage: coverage
image: debian:testing
coverage: '/^\s+lines.+: (\d+.\d*%)/'
dependencies: []
script:
- apt update
- apt install -y curl gnupg2 git
- 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
- apt update
2020-05-15 18:40:17 +00:00
- apt install -y chromium lcov libolm3 sqlite3 libsqlite3-dev
- 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:
tags:
- linux
2019-06-09 10:16:48 +00:00
stage: coverage
image: debian:testing
2019-06-09 10:16:48 +00:00
coverage: '/^\s+lines.+: (\d+.\d*%)/'
dependencies: []
2020-05-09 13:24:14 +00:00
script:
- apt update
2020-05-15 18:40:17 +00:00
- apt install -y curl git sqlite3 libsqlite3-dev
2020-05-09 13:24:14 +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
- ln -s /usr/lib/dart/bin/pub /usr/bin/
- useradd -m test
- chown -R 'test:' '.'
- chmod +x ./test.sh
- pub get
- pub run test
2019-06-09 12:33:25 +00:00
code_analyze:
tags:
- docker
stage: coverage
image: cirrusci/flutter
dependencies: []
script:
- flutter analyze
build-api-doc:
tags:
- docker
2019-06-09 12:27:00 +00:00
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:
- master
2019-06-09 12:34:28 +00:00
build-doc:
tags:
- docker
stage: builddocs
image: registry.gitlab.com/larodar/mdbook-dtmo:latest
script:
- cd doc
- mdbook-dtmo build -d public
- mv public ../doc-public
artifacts:
paths:
- doc-public
only:
- master
2019-06-09 18:30:50 +00:00
pages:
tags:
- linux
2019-06-09 18:30:50 +00:00
stage: deploy
image: alpine:latest
2019-06-09 12:19:49 +00:00
script:
- mv doc/api/ ./home/api
- mv doc-public ./home/doc
- mv home public
2019-06-09 12:27:00 +00:00
dependencies:
- build-api-doc
- build-doc
2019-06-09 13:17:31 +00:00
artifacts:
paths:
- public
2019-06-09 13:17:31 +00:00
only:
2020-01-30 13:11:18 +00:00
- master