From 2da8f58af61d6f2bd16dba6d189324efeecf6f6b Mon Sep 17 00:00:00 2001 From: Sebastian Nagel Date: Wed, 27 Nov 2024 12:34:32 +0100 Subject: [PATCH] Testing Github workflow --- .github/workflows/master-build.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/master-build.yml b/.github/workflows/master-build.yml index 03921b2ee..1f012c4a8 100644 --- a/.github/workflows/master-build.yml +++ b/.github/workflows/master-build.yml @@ -87,20 +87,20 @@ jobs: - 'build.xml' - 'ivy/ivy.xml' - name: test buildconf - if: ${{ steps.filter.outputs.buildconf }} + if: ${{ steps.filter.outputs.buildconf == 'true' }} run: echo "test buildconf" # run if the build configuration or both 'core' and 'plugins' files were changed - name: test all - if: ${{ steps.filter.outputs.buildconf || ( steps.filter.outputs.core && steps.filter.outputs.plugin ) }} + if: ${{ steps.filter.outputs.buildconf == 'true' || ( steps.filter.outputs.core == 'true' && steps.filter.outputs.plugin == 'true' ) }} run: echo "test all" # run: ant clean test -buildfile build.xml # run only if 'core' files were changed - name: test core - if: ${{ steps.filter.outputs.core && ! steps.filter.outputs.plugins && ! steps.filter.outputs.buildconf }} + if: ${{ steps.filter.outputs.core == 'true' && steps.filter.outputs.plugins == 'false' && steps.filter.outputs.buildconf == 'false' }} run: echo "test core" # run: ant clean test-core -buildfile build.xml # run only if 'plugins' files were changed - name: test plugins - if: ${{ steps.filter.outputs.plugins && ! steps.filter.outputs.core && ! steps.filter.outputs.buildconf }} + if: ${{ steps.filter.outputs.plugins == 'true' && steps.filter.outputs.core == 'false' && steps.filter.outputs.buildconf == 'false' }} run: echo "test plugins" # run: ant clean test-plugins -buildfile build.xml