From 7face248bda0804207eed3a02d4b504d7676e335 Mon Sep 17 00:00:00 2001 From: David Pilato Date: Wed, 7 Aug 2024 22:34:11 +0200 Subject: [PATCH] Try to run PR IT in parallel --- .github/workflows/pr.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index c9fcec041..ec0ee695f 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -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: @@ -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: @@ -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: