forked from szpak/gradle-pitest-plugin
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #54 from koral--/upstream
Merge upstream changes fixes #53
- Loading branch information
Showing
20 changed files
with
1,003 additions
and
382 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,34 @@ | ||
version: 2 | ||
jobs: | ||
build: | ||
docker: | ||
- image: circleci/openjdk:8-jdk-browsers | ||
steps: | ||
- checkout | ||
- restore_cache: | ||
# Read about caching dependencies: https://circleci.com/docs/2.0/caching/ | ||
key: gradle-pitest-plugin-2-{{ .Branch }}-{{ checksum "build.gradle" }}-{{ checksum "gradle/cdeliveryboy-release.gradle" }} | ||
|
||
- run: ./gradlew clean check | ||
- run: ./gradlew funTest | ||
# To leave clear state in cached ~/.gradle - doesn't work as expected anyway... | ||
- run: ./gradlew --stop | ||
|
||
- save_cache: | ||
# TODO: Add some excludes? | ||
paths: | ||
- ~/.gradle | ||
key: gradle-pitest-plugin-2-{{ .Branch }}-{{ checksum "build.gradle" }}-{{ checksum "gradle/cdeliveryboy-release.gradle" }} | ||
|
||
# Upload test results for display in Test Summary: https://circleci.com/docs/2.0/collect-test-data/ | ||
- store_test_results: | ||
path: build/test-results | ||
|
||
# Upload test summary for display in Artifacts: https://circleci.com/docs/2.0/artifacts/ | ||
- store_artifacts: | ||
path: build/reports/tests/test | ||
destination: test | ||
- store_artifacts: | ||
path: build/reports/tests/funcTest | ||
destination: funcTest | ||
|
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
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
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
Oops, something went wrong.