-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
delete old circle config increase allowable diff for failing tests test-tag v0.38.0-dev
- Loading branch information
Molly Lloyd
committed
Jul 5, 2017
1 parent
277e699
commit d922c75
Showing
7 changed files
with
39 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
version: 2 | ||
|
||
jobs: | ||
build: | ||
docker: | ||
- image: mbgl/ci:r4-linux-clang-3.9 | ||
working_directory: ~/mapbox-gl-js | ||
steps: | ||
- checkout | ||
- restore_cache: | ||
key: v1-mapbox-gl-js-cache | ||
- run: | ||
name: install dependencies | ||
command: | | ||
bash ./.circleci/dependencies.sh | ||
- save_cache: | ||
key: v1-mapbox-gl-js-cache | ||
paths: | ||
- '~/.yarn' | ||
- '.eslintcache' | ||
- 'node_modules' | ||
- run: | ||
name: run tests | ||
command: | | ||
bash ./.circleci/test.sh | ||
- store_artifacts: | ||
path: "test/integration/render-tests/index.html" | ||
- store_artifacts: | ||
path: "test/integration/query-tests/index.html" | ||
- run: | ||
name: deploy if tagged | ||
when: on_success | ||
command: | | ||
if [[ $CIRCLE_TAG =~ v[0-9]+\.[0-9]+\.[0-9]+(\-dev)? ]]; then | ||
bash ./deploy.sh | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters