Skip to content

Commit

Permalink
Try to run PR IT in parallel
Browse files Browse the repository at this point in the history
  • Loading branch information
dadoonet committed Aug 7, 2024
1 parent 5a15217 commit 7face24
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
key: fscrawler-docker-cache-${{ runner.os }}-${{ hashFiles('pom.xml') }}
continue-on-error: true
- name: Run the integration tests
run: mvn --batch-mode install -Ddocker.skip -DskipUnitTests -Dtests.parallelism=1
run: mvn --batch-mode install -Ddocker.skip -DskipUnitTests

# We run integration tests with elastic stack 7
it-es7:
Expand All @@ -75,7 +75,7 @@ jobs:
key: fscrawler-docker-cache-${{ runner.os }}-${{ hashFiles('pom.xml') }}
continue-on-error: true
- name: Run the integration tests
run: mvn --batch-mode install -Ddocker.skip -DskipUnitTests -Pes-7x -Dtests.parallelism=1
run: mvn --batch-mode install -Ddocker.skip -DskipUnitTests -Pes-7x

# We run integration tests with elastic stack 6
it-es6:
Expand All @@ -95,7 +95,7 @@ jobs:
key: fscrawler-docker-cache-${{ runner.os }}-${{ hashFiles('pom.xml') }}
continue-on-error: true
- name: Run the integration tests
run: mvn --batch-mode install -Ddocker.skip -DskipUnitTests -Pes-6x -Dtests.parallelism=1
run: mvn --batch-mode install -Ddocker.skip -DskipUnitTests -Pes-6x

# We run this job in parallel after the build
build-docker:
Expand Down

0 comments on commit 7face24

Please sign in to comment.