Skip to content

Commit

Permalink
removed print flags statements
Browse files Browse the repository at this point in the history
  • Loading branch information
lalogiquefloue committed Nov 13, 2024
1 parent 59ba768 commit 757cb1a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
timeout-minutes: 15
run: |
echo "Configuration 1 - Test build with change of garbage collection type."
export MAVEN_OPTS="-XX:+PrintFlagsFinal -XX:+UseSerialGC"
export MAVEN_OPTS="-XX:+UseSerialGC"
./mvnw -B verify
unset MAVEN_OPTS
Expand All @@ -78,7 +78,7 @@ jobs:
timeout-minutes: 15
run: |
echo "Configuration 2 - Test build with reduced heap size."
export MAVEN_OPTS="-XX:+PrintFlagsFinal -XX:MaxHeapSize=2G -XX:MinHeapSize=4M"
export MAVEN_OPTS="-XX:MaxHeapSize=2G -XX:MinHeapSize=4M"
./mvnw -B verify
unset MAVEN_OPTS
Expand All @@ -104,7 +104,7 @@ jobs:
timeout-minutes: 15
run: |
echo "Configuration 3 - Test build with 1 cpu core available for multithreading."
export MAVEN_OPTS="-XX:+PrintFlagsFinal -XX:ActiveProcessorCount=1"
export MAVEN_OPTS="-XX:ActiveProcessorCount=1"
./mvnw -B verify
unset MAVEN_OPTS
Expand Down

0 comments on commit 757cb1a

Please sign in to comment.