Migrate features and fixes from dev/26.1 to port/1.21.1 #220
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Pull Request Check | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| branches: | |
| - dev/** | |
| # - releases/** | |
| paths: | |
| - module.*/src/** | |
| - module.*/build.gradle | |
| - module.*/gradle.properties | |
| - build.gradle | |
| - gradle.properties | |
| - settings.gradle | |
| jobs: | |
| config: | |
| uses: ./.github/workflows/build_and_test.yml | |
| with: | |
| module: config | |
| module_id: anvillib-config | |
| mod_id: anvillib_config | |
| ci_build: true | |
| pr_build: true | |
| codec: | |
| uses: ./.github/workflows/build_and_test.yml | |
| with: | |
| module: codec | |
| module_id: anvillib-codec | |
| mod_id: anvillib_codec | |
| ci_build: true | |
| pr_build: true | |
| integration: | |
| uses: ./.github/workflows/build_and_test.yml | |
| with: | |
| module: integration | |
| module_id: anvillib-integration | |
| mod_id: anvillib_integration | |
| ci_build: true | |
| pr_build: true | |
| moveable-entity-block: | |
| uses: ./.github/workflows/build_and_test.yml | |
| with: | |
| module: moveable-entity-block | |
| module_id: anvillib-moveable-entity-block | |
| mod_id: anvillib_moveable_entity_block | |
| ci_build: true | |
| pr_build: true | |
| multiblock: | |
| uses: ./.github/workflows/build_and_test.yml | |
| needs: | |
| - config | |
| - codec | |
| - network | |
| - util | |
| with: | |
| module: multiblock | |
| module_id: anvillib-multiblock | |
| mod_id: anvillib_multiblock | |
| ci_build: true | |
| pr_build: true | |
| network: | |
| uses: ./.github/workflows/build_and_test.yml | |
| with: | |
| module: network | |
| module_id: anvillib-network | |
| mod_id: anvillib_network | |
| ci_build: true | |
| pr_build: true | |
| recipe: | |
| needs: | |
| - config | |
| - codec | |
| - util | |
| uses: ./.github/workflows/build_and_test.yml | |
| with: | |
| module: recipe | |
| module_id: anvillib-recipe | |
| mod_id: anvillib_recipe | |
| ci_build: true | |
| pr_build: true | |
| registrum: | |
| uses: ./.github/workflows/build_and_test.yml | |
| needs: | |
| - util | |
| with: | |
| module: registrum | |
| module_id: anvillib-registrum | |
| mod_id: anvillib_registrum | |
| ci_build: true | |
| pr_build: true | |
| util: | |
| uses: ./.github/workflows/build_and_test.yml | |
| needs: | |
| - codec | |
| with: | |
| module: util | |
| module_id: anvillib-util | |
| mod_id: anvillib_util | |
| ci_build: true | |
| pr_build: true | |
| wheel: | |
| uses: ./.github/workflows/build_and_test.yml | |
| needs: | |
| - util | |
| with: | |
| module: wheel | |
| module_id: anvillib-wheel | |
| mod_id: anvillib_wheel | |
| ci_build: true | |
| pr_build: true | |
| main: | |
| needs: | |
| - config | |
| - codec | |
| - integration | |
| - moveable-entity-block | |
| - multiblock | |
| - network | |
| - recipe | |
| - registrum | |
| - util | |
| - wheel | |
| uses: ./.github/workflows/build_and_test.yml | |
| with: | |
| module: main | |
| module_id: anvillib | |
| mod_id: anvillib | |
| ci_build: true | |
| pr_build: true | |
| gametest: true |