Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
a255d368
Commit
a255d368
authored
Jun 23, 2020
by
agilob
Committed by
Shinya Maeda
Jun 23, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add Dart gitlab-ci template
parent
a6994faa
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
27 additions
and
0 deletions
+27
-0
changelogs/unreleased/32942-add-dart-ci-template.yml
changelogs/unreleased/32942-add-dart-ci-template.yml
+5
-0
lib/gitlab/ci/templates/Dart.gitlab-ci.yml
lib/gitlab/ci/templates/Dart.gitlab-ci.yml
+22
-0
No files found.
changelogs/unreleased/32942-add-dart-ci-template.yml
0 → 100644
View file @
a255d368
---
title
:
Added CI template for Dart
merge_request
:
32942
author
:
agilob
type
:
added
lib/gitlab/ci/templates/Dart.gitlab-ci.yml
0 → 100644
View file @
a255d368
# 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
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment