Skip to content

Commit 2da8f58

Browse files
Testing Github workflow
1 parent e61de0c commit 2da8f58

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/master-build.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -87,20 +87,20 @@ jobs:
8787
- 'build.xml'
8888
- 'ivy/ivy.xml'
8989
- name: test buildconf
90-
if: ${{ steps.filter.outputs.buildconf }}
90+
if: ${{ steps.filter.outputs.buildconf == 'true' }}
9191
run: echo "test buildconf"
9292
# run if the build configuration or both 'core' and 'plugins' files were changed
9393
- name: test all
94-
if: ${{ steps.filter.outputs.buildconf || ( steps.filter.outputs.core && steps.filter.outputs.plugin ) }}
94+
if: ${{ steps.filter.outputs.buildconf == 'true' || ( steps.filter.outputs.core == 'true' && steps.filter.outputs.plugin == 'true' ) }}
9595
run: echo "test all"
9696
# run: ant clean test -buildfile build.xml
9797
# run only if 'core' files were changed
9898
- name: test core
99-
if: ${{ steps.filter.outputs.core && ! steps.filter.outputs.plugins && ! steps.filter.outputs.buildconf }}
99+
if: ${{ steps.filter.outputs.core == 'true' && steps.filter.outputs.plugins == 'false' && steps.filter.outputs.buildconf == 'false' }}
100100
run: echo "test core"
101101
# run: ant clean test-core -buildfile build.xml
102102
# run only if 'plugins' files were changed
103103
- name: test plugins
104-
if: ${{ steps.filter.outputs.plugins && ! steps.filter.outputs.core && ! steps.filter.outputs.buildconf }}
104+
if: ${{ steps.filter.outputs.plugins == 'true' && steps.filter.outputs.core == 'false' && steps.filter.outputs.buildconf == 'false' }}
105105
run: echo "test plugins"
106106
# run: ant clean test-plugins -buildfile build.xml

0 commit comments

Comments
 (0)