nc-photos/.gitlab-ci.yml

23 lines
622 B
YAML
Raw Normal View History

2021-04-16 02:47:35 +08:00
# This file is a template, and might need editing before it works on your project.
test:
stage: test
2021-09-02 10:48:20 +00:00
except:
- triage
2021-08-09 15:11:52 +08:00
image: "cirrusci/flutter:latest"
2021-04-15 18:57:27 +00:00
before_script:
- pub global activate junitreport
- export PATH="$PATH":"$HOME/.pub-cache/bin"
2021-04-16 02:47:35 +08:00
script:
- cd app
2021-04-15 18:57:27 +00:00
- flutter test --machine --coverage | tojunit -o report.xml
- lcov --summary coverage/lcov.info
- genhtml coverage/lcov.info --output=coverage
coverage: '/lines\.*: \d+\.\d+\%/'
artifacts:
name: coverage
paths:
- $CI_PROJECT_DIR/app/coverage
2021-04-15 18:57:27 +00:00
reports:
2022-04-23 09:53:50 +00:00
junit: app/report.xml
2021-10-09 20:51:57 +00:00
expire_in: 6 mos