From 21b7f46a7709e421566d228cce91fda59b8390fd Mon Sep 17 00:00:00 2001 From: Lukas Lieb Date: Fri, 20 Dec 2024 11:28:13 +0100 Subject: [PATCH] Disable tests on GitHub Actions - We run the tests on our own Jenkins CI - There are some tests which are currently failing on GitHub Actions, however the current shared actions workflow yml has to strict glob patters and don't find the surefire raport xml --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 70e374424..c70e849e5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,6 +8,6 @@ on: jobs: build: - uses: axonivy-market/github-workflows/.github/workflows/dev.yml@v4 + uses: axonivy-market/github-workflows/.github/workflows/dev.yml@v5 with: - mvnArgs: -Dmaven.test.failure.ignore=true + mvnArgs: -Dmaven.test.skip=true # We run the tests on our Jenkins CI