Skip to content

Commit

Permalink
Command to create directory to copy to
Browse files Browse the repository at this point in the history
  • Loading branch information
karicordes committed Mar 12, 2024
1 parent 5bcce0f commit b7c0efd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
docker stop mms
mkdir -p jacocoOutput
docker cp mms:/mms/jacocoOutput/jacoco-it.exec ./jacocoOutput/jacoco-it.exec
- persist_to_workspace:
root: /home/circleci/
paths:
Expand All @@ -65,6 +65,7 @@ jobs:
name: Build classes to scan
command: |
./gradlew build -x test
mkdir -p TEMPORARYclassfiles
cp -r */build/classes/java/main/* TEMPORARYclassfiles/
java -jar jacocoJars/jacococli.jar report jacocoOutput/jacoco-it.exec --classfiles TEMPORARYclassfiles/ --xml ./jacocoOutput/jacocoXMLReport
rm -r TEMPORARYclassfiles
Expand Down

0 comments on commit b7c0efd

Please sign in to comment.