Skip to content

Commit

Permalink
Merge pull request #58 from Cokemonkey11/cokemonkey11/use_gradlew_in_ci
Browse files Browse the repository at this point in the history
use gradlew in ci
  • Loading branch information
Frotty authored Nov 13, 2020
2 parents f29e038 + 6ef7ef4 commit 66ba4a6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ jobs:
- image: circleci/openjdk:8-jdk

working_directory: ~/repo

environment:
# Customize the JVM maximum heap limit
JVM_OPTS: -Xmx3200m
Expand All @@ -19,17 +19,17 @@ jobs:
- v1-dependencies-{{ checksum "build.gradle" }}
- v1-dependencies-

- run: gradle dependencies
- run: ./gradlew dependencies

- save_cache:
paths:
- ~/.gradle
key: v1-dependencies-{{ checksum "build.gradle" }}

- run: gradle clean check jar
- run: ./gradlew clean check jar

- run: ./gradlew test

- run: gradle test

- run: gradle jacocoTestReport
- run: ./gradlew jacocoTestReport

- run: bash <(curl -s https://codecov.io/bash)
Empty file modified gradlew
100644 → 100755
Empty file.

0 comments on commit 66ba4a6

Please sign in to comment.