H-Comic: update to 1.6 #14836
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: PR check | |
| on: | |
| pull_request: | |
| paths: | |
| - '**' | |
| - '!**.md' | |
| - '!.github/**' | |
| - '.github/workflows/build_pull_request.yml' | |
| permissions: {} | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number }} | |
| cancel-in-progress: true | |
| env: | |
| CI_CHUNK_SIZE: 80 | |
| IS_PR_CHECK: true | |
| jobs: | |
| prepare: | |
| name: Prepare job | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| outputs: | |
| matrix: ${{ steps.generate-matrices.outputs.matrix }} | |
| delete: ${{ steps.generate-matrices.outputs.delete }} | |
| steps: | |
| - name: Checkout PR | |
| uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 | |
| with: | |
| fetch-depth: 0 | |
| persist-credentials: false | |
| - id: generate-matrices | |
| name: Generate build matrices | |
| run: | | |
| python ./.github/scripts/generate-build-matrices.py origin/main Release | |
| build: | |
| name: Build extensions (${{ matrix.chunk.number }}) | |
| needs: prepare | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 30 | |
| if: ${{ toJson(fromJson(needs.prepare.outputs.matrix).chunk) != '[]' }} | |
| strategy: | |
| matrix: ${{ fromJSON(needs.prepare.outputs.matrix) }} | |
| steps: | |
| - name: Checkout PR | |
| uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 | |
| with: | |
| persist-credentials: false | |
| - name: Set up Java | |
| uses: actions/setup-java@0f481fcb613427c0f801b606911222b5b6f3083a # v5.5.0 | |
| with: | |
| java-version: 17 | |
| distribution: temurin | |
| - name: Set up Gradle | |
| uses: gradle/actions/setup-gradle@0723195856401067f7a2779048b490ace7a47d7c # v5.0.2 | |
| with: | |
| cache-read-only: true | |
| - name: Build extensions (${{ matrix.chunk.number }}) | |
| env: | |
| MODULES: ${{ join(matrix.chunk.modules, ' ') }} | |
| run: | | |
| ./gradlew $MODULES | |
| - name: Upload APKs (${{ matrix.chunk.number }}) | |
| uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 | |
| if: "github.repository == 'keiyoushi/extensions-source'" | |
| with: | |
| name: "individual-apks-${{ matrix.chunk.number }}" | |
| path: | | |
| **/build/outputs/apk/release/*.apk | |
| **/build/outputs/jar/release/*.jar | |
| retention-days: 1 |