diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index 11caa4287c..6bb13993a6 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -53,5 +53,5 @@ jobs: it_profile="integration-tests-${{inputs.it-category}}" fi echo "Using profile: ${it_profile}" - ./mvnw ${MAVEN_ARGS} -T1C -B install -DskipTests -Pno-apt --file pom.xml + ./mvnw ${MAVEN_ARGS} -T1C -B install -DskipTests --file pom.xml ./mvnw ${MAVEN_ARGS} -T1C -B package -P${it_profile} -Dfabric8-httpclient-impl.name=${{inputs.http-client}} --file pom.xml diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 3fa5655cbc..75bafecab5 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -29,7 +29,7 @@ jobs: ./mvnw ${MAVEN_ARGS} spotless:check --file pom.xml ./mvnw -N license:check --file pom.xml - name: Run unit tests - run: ./mvnw ${MAVEN_ARGS} clean install -Pno-apt --file pom.xml + run: ./mvnw ${MAVEN_ARGS} clean install --file pom.xml build: uses: ./.github/workflows/build.yml