nc-photos/.gitlab-ci.yml

22 lines
601 B
YAML
Raw Normal View History

2021-04-15 20:47:35 +02:00
# This file is a template, and might need editing before it works on your project.
test:
stage: test
2021-09-02 12:48:20 +02:00
except:
- triage
2021-08-09 09:11:52 +02:00
image: "cirrusci/flutter:latest"
2021-04-15 20:57:27 +02:00
before_script:
- pub global activate junitreport
- export PATH="$PATH":"$HOME/.pub-cache/bin"
2021-04-15 20:47:35 +02:00
script:
2021-04-15 20:57:27 +02: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/coverage
reports:
junit: report.xml
2021-10-09 22:51:57 +02:00
expire_in: 6 mos