Skip to content

Commit

Permalink
Testing Github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastian-nagel committed Nov 27, 2024
1 parent e61de0c commit 2da8f58
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/master-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 2da8f58

Please sign in to comment.