Skip to content

Commit

Permalink
Remove parallel execution as it does not work well with multi-module …
Browse files Browse the repository at this point in the history
…projects
  • Loading branch information
Björn Ekryd committed May 22, 2022
1 parent c39516b commit d7bc52d
Showing 1 changed file with 1 addition and 12 deletions.
13 changes: 1 addition & 12 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,29 +10,18 @@ shared: &shared
keys:
- sortpom-cache-{{ checksum "pom.xml" }}
- sortpom-cache- # fallback in case previous cache key is not found
- run: |
mvn \
-Dtest=$(for file in $(circleci tests glob "src/test/**/**.java" \
| circleci tests split --split-by=timings); \
do basename $file \
| sed -e "s/.java/,/"; \
done | tr -d '\r\n') \
-Dmaven.javadoc.skip=true -e -B -V verify
- store_test_results: # We use this timing data to optimize the future runs
path: target/surefire-reports
- run: mvn clean verify -Dmaven.javadoc.skip=true -B -V
- save_cache:
paths:
- ~/.m2
key: sortpom-cache--{{ checksum "pom.xml" }}

jobs:
jdk17:
parallelism: 10
docker:
- image: cimg/openjdk:17.0
<<: *shared
jdk18:
parallelism: 10
docker:
- image: cimg/openjdk:18.0
<<: *shared
Expand Down

0 comments on commit d7bc52d

Please sign in to comment.