remove #193
This file contains 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: CI | |
on: | |
push: | |
branches: | |
- riz-ext | |
paths: | |
- "**" | |
- "!**.md" | |
- "!.github/**" | |
- ".github/scripts/**" | |
- ".github/workflows/build_push.yml" | |
concurrency: | |
group: ${{ github.workflow }} | |
cancel-in-progress: true | |
env: | |
CI_CHUNK_SIZE: 65 | |
jobs: | |
prepare: | |
name: Prepare job | |
runs-on: ubuntu-latest | |
outputs: | |
individualMatrix: ${{ steps.generate-matrices.outputs.individualMatrix }} | |
steps: | |
- name: Clone repo | |
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0 | |
- name: Validate Gradle Wrapper | |
uses: gradle/actions/wrapper-validation@d156388eb19639ec20ade50009f3d199ce1e2808 # v4.1.0 | |
- name: Get number of modules | |
run: | | |
set -x | |
projects=(src/*/*) | |
echo "NUM_INDIVIDUAL_MODULES=${#projects[@]}" >> $GITHUB_ENV | |
- id: generate-matrices | |
name: Create output matrices | |
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1 | |
with: | |
script: | | |
const numIndividualModules = process.env.NUM_INDIVIDUAL_MODULES; | |
const chunkSize = process.env.CI_CHUNK_SIZE; | |
const numIndividualChunks = Math.ceil(numIndividualModules / chunkSize); | |
console.log(`Individual modules: ${numIndividualModules} (${numIndividualChunks} chunks of ${chunkSize})`); | |
core.setOutput('individualMatrix', { 'chunk': [...Array(numIndividualChunks).keys()] }); | |
build_individual: | |
name: Build individual modules | |
needs: prepare | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: ${{ fromJSON(needs.prepare.outputs.individualMatrix) }} | |
steps: | |
- name: Checkout riz-ext branch | |
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0 | |
- name: Set up JDK | |
uses: actions/setup-java@b36c23c0d998641eff861008f374ee103c25ac73 # v4.4.0 | |
with: | |
java-version: 17 | |
distribution: temurin | |
- name: Prepare signing key | |
run: | | |
echo ${{ secrets.SIGNING_KEY }} | base64 -d > signingkey.jks | |
- name: Set up Gradle | |
uses: gradle/actions/setup-gradle@d156388eb19639ec20ade50009f3d199ce1e2808 # v4.1.0 | |
with: | |
cache-read-only: ${{ matrix.chunk != 0 }} | |
- name: Build extensions (chunk ${{ matrix.chunk }}) | |
env: | |
CI_CHUNK_NUM: ${{ matrix.chunk }} | |
ALIAS: ${{ secrets.ALIAS }} | |
KEY_STORE_PASSWORD: ${{ secrets.KEY_STORE_PASSWORD }} | |
KEY_PASSWORD: ${{ secrets.KEY_PASSWORD }} | |
run: ./gradlew -p src assembleRelease | |
- name: Upload APKs (chunk ${{ matrix.chunk }}) | |
uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4.4.0 | |
if: "github.repository == 'riztard/tachiyomi-extensions'" | |
with: | |
name: "individual-apks-${{ matrix.chunk }}" | |
path: "**/*.apk" | |
retention-days: 1 | |
- name: Clean up CI files | |
run: rm signingkey.jks | |
publish_repo: | |
name: Publish repo | |
needs: | |
- build_individual | |
if: "github.repository == 'riztard/tachiyomi-extensions'" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Download APK artifacts | |
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8 | |
with: | |
path: ~/apk-artifacts | |
- name: Set up JDK | |
uses: actions/setup-java@b36c23c0d998641eff861008f374ee103c25ac73 # v4.4.0 | |
with: | |
java-version: 17 | |
distribution: temurin | |
- name: Checkout riz-ext branch | |
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0 | |
with: | |
ref: riz-ext | |
path: riz-ext | |
- name: Create repo artifacts | |
run: | | |
cd riz-ext | |
python ./.github/scripts/move-apks.py | |
INSPECTOR_LINK="$(curl -s "https://api.github.com/repos/keiyoushi/extensions-inspector/releases/latest" | jq -r '.assets[0].browser_download_url')" | |
curl -L "$INSPECTOR_LINK" -o ./Inspector.jar | |
java -jar ./Inspector.jar "repo/apk" "output.json" "tmp" | |
python ./.github/scripts/create-repo.py | |
- name: Checkout repo branch | |
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0 | |
with: | |
# repository: riztard/tachiyomi-extensions | |
# token: ${{ secrets.BOT_PAT }} | |
ref: repo | |
path: repo | |
- name: Deploy repo | |
run: | | |
cd repo | |
../riz-ext/.github/scripts/commit-repo.sh |