Commit 9f160aa4 authored by Shinya Maeda's avatar Shinya Maeda

Merge branch 'add-dart-ci-template' into 'master'

Add Dart gitlab-ci template

See merge request gitlab-org/gitlab!32942
parents 81698dea a255d368
---
title: Added CI template for Dart
merge_request: 32942
author: agilob
type: added
# 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:
- export PATH="$PATH":"~/.pub-cache/bin"
- pub get --no-precompile
test:
stage: test
script:
- pub run test $PUB_VARS
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment