Skip to content

Commit

Permalink
Renamed CI tasks (flutter#17216)
Browse files Browse the repository at this point in the history
* Renamed CI tasks

`tests` to `tests-linux`
`windows` to `tests-windows`

* Explicitly specify shards everywhere
  • Loading branch information
fkorotkov authored and Hixie committed May 3, 2018
1 parent b2db3ba commit d0125d9
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions .cirrus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ task:
env:
CIRRUS_WORKING_DIR: "/tmp/flutter sdk"
PATH: "$CIRRUS_WORKING_DIR/bin:$CIRRUS_WORKING_DIR/bin/cache/dart-sdk/bin:$PATH"
SHARD: "$CIRRUS_TASK_NAME"

git_fetch_script: git fetch origin
setup_script: |
Expand All @@ -20,16 +19,25 @@ task:
matrix:
- name: docs
env:
SHARD: docs
docs_script: ./dev/bots/docs.sh
- name: analyze
env:
SHARD: analyze
test_script: dart ./dev/bots/test.dart
- name: tests
- name: tests-linux
env:
SHARD: tests
test_script: dart ./dev/bots/test.dart
container:
cpu: 4
memory: 8G

windows_task:
task:
name: tests-windows
env:
SHARD: tests
windows_container:
dockerfile: dev/bots/docker/Dockerfile.windows
env:
Expand Down

0 comments on commit d0125d9

Please sign in to comment.