Updated GitHub and GitLab workflows
This commit is contained in:
parent
2e7a3ad7b6
commit
5d2f25b3ca
2 changed files with 84 additions and 12 deletions
2
.github/workflows/dart.yml
vendored
2
.github/workflows/dart.yml
vendored
|
@ -24,7 +24,7 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
dart test --coverage=coverage
|
dart test --coverage=coverage
|
||||||
dart run coverage:format_coverage --lcov --in=coverage \
|
dart run coverage:format_coverage --lcov --in=coverage \
|
||||||
-out=coverage/lcov.info --packages=.packages --report-on=lib,bin
|
-out=coverage/lcov.info --packages=.dart_tool/package_config.json --report-on=lib,bin
|
||||||
|
|
||||||
- uses: codecov/codecov-action@v2
|
- uses: codecov/codecov-action@v2
|
||||||
name: Publish coverage to Codecov
|
name: Publish coverage to Codecov
|
||||||
|
|
|
@ -1,19 +1,91 @@
|
||||||
image: google/dart
|
# You can copy and paste this template into a new `.gitlab-ci.yml` file.
|
||||||
|
# You should not add this template to an existing `.gitlab-ci.yml` file by using the `include:` keyword.
|
||||||
|
#
|
||||||
|
# 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
|
||||||
|
|
||||||
|
# https://hub.docker.com/_/dart
|
||||||
|
image: dart:stable
|
||||||
|
|
||||||
variables:
|
variables:
|
||||||
|
# To learn more go to https://dart.dev/tools/dart-test
|
||||||
|
# Or run `dart test --help`
|
||||||
PUB_VARS: "--platform vm --timeout 30s --concurrency=6 --test-randomize-ordering-seed=random --reporter=expanded"
|
PUB_VARS: "--platform vm --timeout 30s --concurrency=6 --test-randomize-ordering-seed=random --reporter=expanded"
|
||||||
|
|
||||||
|
.use-pub-cache-bin:
|
||||||
|
# Define commands that need to be executed before each job.
|
||||||
|
before_script:
|
||||||
|
# Set PUB_CACHE either here or in the CI/CD Settings if you have multiple jobs that use dart commands.
|
||||||
|
# PUB_CACHE is used by the `dart pub` command, it needs to be set so package dependencies are stored at the project-level for CI/CD operations.
|
||||||
|
- export PUB_CACHE=".pub-cache"
|
||||||
|
- export PATH="$PATH:$HOME/$PUB_CACHE/bin"
|
||||||
|
|
||||||
|
# Cache generated files and plugins between builds.
|
||||||
|
.upload-cache:
|
||||||
|
cache:
|
||||||
|
when: 'on_success'
|
||||||
|
paths:
|
||||||
|
- .pub-cache/bin/
|
||||||
|
- .pub-cache/global_packages/
|
||||||
|
- .pub-cache/hosted/
|
||||||
|
- .dart_tool/
|
||||||
|
- .packages
|
||||||
|
|
||||||
# Cache downloaded dependencies and plugins between builds.
|
# Cache downloaded dependencies and plugins between builds.
|
||||||
# To keep cache across branches add 'key: "$CI_JOB_NAME"'
|
# To keep cache across branches add 'key: "$CI_JOB_NAME"'
|
||||||
cache:
|
.download-cache:
|
||||||
paths:
|
cache:
|
||||||
- .pub-cache/global_packages
|
paths:
|
||||||
|
- .dart_tool/
|
||||||
|
- .packages
|
||||||
|
policy: pull
|
||||||
|
|
||||||
before_script:
|
install-dependencies:
|
||||||
- export PATH="$PATH":"~/.pub-cache/bin"
|
stage: .pre
|
||||||
- pub get --no-precompile
|
extends:
|
||||||
|
- .use-pub-cache-bin
|
||||||
test:
|
- .upload-cache
|
||||||
stage: test
|
|
||||||
script:
|
script:
|
||||||
- pub run test $PUB_VARS
|
- dart pub get --no-precompile
|
||||||
|
|
||||||
|
build:
|
||||||
|
stage: build
|
||||||
|
needs:
|
||||||
|
- install-dependencies
|
||||||
|
extends:
|
||||||
|
- .use-pub-cache-bin
|
||||||
|
- .upload-cache
|
||||||
|
script:
|
||||||
|
- dart pub get --offline --precompile
|
||||||
|
|
||||||
|
unit-test:
|
||||||
|
stage: test
|
||||||
|
needs:
|
||||||
|
- build
|
||||||
|
extends:
|
||||||
|
- .use-pub-cache-bin
|
||||||
|
- .download-cache
|
||||||
|
script:
|
||||||
|
- dart test $PUB_VARS
|
||||||
|
|
||||||
|
lint-test:
|
||||||
|
stage: test
|
||||||
|
needs:
|
||||||
|
- install-dependencies
|
||||||
|
extends:
|
||||||
|
- .use-pub-cache-bin
|
||||||
|
- .download-cache
|
||||||
|
script:
|
||||||
|
- dart analyze .
|
||||||
|
|
||||||
|
format-test:
|
||||||
|
stage: test
|
||||||
|
needs:
|
||||||
|
- install-dependencies
|
||||||
|
extends:
|
||||||
|
- .use-pub-cache-bin
|
||||||
|
- .download-cache
|
||||||
|
script:
|
||||||
|
- dart format --set-exit-if-changed bin/ lib/ test/
|
Loading…
Add table
Add a link
Reference in a new issue