Skip to content

Commit

Permalink
200 loops
Browse files Browse the repository at this point in the history
  • Loading branch information
tkobayas committed Jun 26, 2024
1 parent 51c81e6 commit cfa800a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pr-drools.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,14 +68,14 @@ jobs:
if: ${{ matrix.os == 'windows-latest' }}
shell: cmd
run: |
FOR /L %%G IN (1,1,50) DO (
FOR /L %%G IN (1,1,200) DO (
echo Iteration %%G
mvn -B clean test --file drools-test-coverage/test-compiler-integration/pom.xml -Dtest=ConcurrentBasesParallelTest,org.drools.mvel.integrationtests.KieContainerTest#testIncrementalCompilationSynchronization*
)
- name: Run loop Linux
if: ${{ matrix.os == 'ubuntu-latest' }}
run: |
for i in {1..50}; do
for i in {1..200}; do
echo "Iteration $i"
mvn -B clean test --file drools-test-coverage/test-compiler-integration/pom.xml -Dtest=ConcurrentBasesParallelTest,org.drools.mvel.integrationtests.KieContainerTest#testIncrementalCompilationSynchronization*
done

0 comments on commit cfa800a

Please sign in to comment.