2021-09-30 23:02:18 +05:30
|
|
|
# To contribute improvements to CI/CD templates, please follow the Development guide at:
|
|
|
|
# https://docs.gitlab.com/ee/development/cicd/templates.html
|
|
|
|
# This specific template is located at:
|
|
|
|
# https://gitlab.com/gitlab-org/gitlab/-/blob/master/lib/gitlab/ci/templates/Dart.gitlab-ci.yml
|
|
|
|
|
2020-07-28 23:09:34 +05:30
|
|
|
# https://hub.docker.com/r/google/dart
|
|
|
|
image: google/dart:2.8.4
|
|
|
|
|
|
|
|
variables:
|
|
|
|
# Use to learn more:
|
|
|
|
# pub run test --help
|
|
|
|
PUB_VARS: "--platform vm --timeout 30s --concurrency=6 --test-randomize-ordering-seed=random --reporter=expanded"
|
|
|
|
|
|
|
|
# Cache downloaded dependencies and plugins between builds.
|
|
|
|
# To keep cache across branches add 'key: "$CI_JOB_NAME"'
|
|
|
|
cache:
|
|
|
|
paths:
|
|
|
|
- .pub-cache/global_packages
|
|
|
|
|
|
|
|
before_script:
|
2022-05-07 20:08:51 +05:30
|
|
|
- export PATH="$PATH:$HOME/.pub-cache/bin"
|
2020-07-28 23:09:34 +05:30
|
|
|
- pub get --no-precompile
|
|
|
|
|
|
|
|
test:
|
|
|
|
stage: test
|
|
|
|
script:
|
|
|
|
- pub run test $PUB_VARS
|