From 5319ba6bc40f55cc6c51942bb95188eaeff2826a Mon Sep 17 00:00:00 2001 From: "J. Koster" Date: Mon, 7 Oct 2024 17:39:16 +0200 Subject: [PATCH] Add some strange suggestion of GitHub CoPilot, because the sky is blue. --- .github/workflows/deploy-to-aws.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy-to-aws.yml b/.github/workflows/deploy-to-aws.yml index c9a0665e..4069c6cb 100644 --- a/.github/workflows/deploy-to-aws.yml +++ b/.github/workflows/deploy-to-aws.yml @@ -43,9 +43,12 @@ jobs: cache: 'npm' cache-dependency-path: webui/package-lock.json + - name: Clear Maven Cache because GitHub CoPilot thinks it is a good idea + run: rm -rf ~/.m2/repository + - name: Build Conformance-Gateway run: | - mvn clean package -B -V -DskipTests + mvn package -B -V -DskipTests # No need to run tests, as they are already run in the PR workflow - name: Verify Run in AWS @@ -54,4 +57,4 @@ jobs: TEST_LOGIN_PASSWORD: ${{ secrets.AWS_DEV_LOGIN_PASSWORD }} TEST_LOGIN_URL: ${{ secrets.AWS_DEV_WEB_URL }} run: | - mvn -B -Djunit.includedTags=Integration -Djunit.excludedTags=WebUI test -X + mvn -B -Djunit.includedTags=Integration -Djunit.excludedTags=WebUI test