167 lines
4.5 KiB
YAML
167 lines
4.5 KiB
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
check_wrapper:
|
|
name: Validate Gradle Wrapper
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Clone repo
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Validate Gradle Wrapper
|
|
uses: gradle/wrapper-validation-action@v1
|
|
|
|
- name: Cancel previous runs
|
|
uses: styfle/cancel-workflow-action@0.8.0
|
|
with:
|
|
access_token: ${{ github.token }}
|
|
|
|
build_multisrc:
|
|
name: Build multisrc modules
|
|
needs: check_wrapper
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
lang: [all, en, ar, ca, de, es, fr, id, it, ja, ko, pt, ru, th, tr, vi, zh, bg, hi, pl]
|
|
steps:
|
|
- name: Checkout master branch
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Set up JDK
|
|
uses: actions/setup-java@v1
|
|
with:
|
|
java-version: 1.8
|
|
|
|
- name: Copy CI gradle.properties
|
|
run: |
|
|
mkdir -p ~/.gradle
|
|
cp .github/runner-files/ci-gradle.properties ~/.gradle/gradle.properties
|
|
|
|
- name: Generate sources from the multi-source library
|
|
uses: eskatos/gradle-command-action@v1
|
|
env:
|
|
CI_MULTISRC: "true"
|
|
with:
|
|
arguments: :multisrc:generateExtensions
|
|
wrapper-cache-enabled: true
|
|
dependencies-cache-enabled: true
|
|
configuration-cache-enabled: true
|
|
|
|
- name: Build "${{ matrix.lang }}" extensions
|
|
uses: eskatos/gradle-command-action@v1
|
|
env:
|
|
CI_MULTISRC: "true"
|
|
CI_MATRIX_LANG: ${{ matrix.lang }}
|
|
with:
|
|
arguments: assembleRelease
|
|
wrapper-cache-enabled: true
|
|
dependencies-cache-enabled: true
|
|
configuration-cache-enabled: true
|
|
|
|
- name: Upload "${{ matrix.lang }}" APKs
|
|
uses: actions/upload-artifact@v2
|
|
with:
|
|
name: "multisrc-${{ matrix.lang }}-apks"
|
|
path: "**/*.apk"
|
|
retention-days: 1
|
|
|
|
build_individual:
|
|
name: Build individual modules
|
|
needs: check_wrapper
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
lang: [all, en, ar, ca, de, es, fr, id, it, ja, ko, pt, ru, th, tr, vi, zh, bg, hi, pl]
|
|
steps:
|
|
- name: Checkout master branch
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Set up JDK
|
|
uses: actions/setup-java@v1
|
|
with:
|
|
java-version: 1.8
|
|
|
|
- name: Copy CI gradle.properties
|
|
run: |
|
|
mkdir -p ~/.gradle
|
|
cp .github/runner-files/ci-gradle.properties ~/.gradle/gradle.properties
|
|
|
|
- name: Build "${{ matrix.lang }}" extensions
|
|
uses: eskatos/gradle-command-action@v1
|
|
env:
|
|
CI_MULTISRC: "false"
|
|
CI_MATRIX_LANG: ${{ matrix.lang }}
|
|
with:
|
|
arguments: assembleRelease
|
|
wrapper-cache-enabled: true
|
|
dependencies-cache-enabled: true
|
|
configuration-cache-enabled: true
|
|
|
|
- name: Upload "${{ matrix.lang }}" APKs
|
|
uses: actions/upload-artifact@v2
|
|
with:
|
|
name: "individual-${{ matrix.lang }}-apks"
|
|
path: "**/*.apk"
|
|
retention-days: 1
|
|
|
|
publish_repo:
|
|
name: Publish repo
|
|
needs:
|
|
- build_multisrc
|
|
- build_individual
|
|
if: "github.repository == 'tachiyomiorg/tachiyomi-extensions'"
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Download APK artifacts
|
|
uses: actions/download-artifact@v2
|
|
with:
|
|
path: ~/apk-artifacts
|
|
|
|
- name: Checkout master branch
|
|
uses: actions/checkout@v2
|
|
with:
|
|
ref: master
|
|
path: master
|
|
|
|
- name: Set up JDK
|
|
uses: actions/setup-java@v1
|
|
with:
|
|
java-version: 11
|
|
|
|
- name: Sign APKs
|
|
run: |
|
|
cd master
|
|
./.github/scripts/sign-apks.sh \
|
|
${{ secrets.SIGNING_KEY }} \
|
|
${{ secrets.ALIAS }} \
|
|
${{ secrets.KEY_STORE_PASSWORD }} \
|
|
${{ secrets.KEY_PASSWORD }}
|
|
|
|
- name: Run inspector
|
|
run: |
|
|
cd master
|
|
INSPECTOR_LINK="$(curl -s "https://api.github.com/repos/tachiyomiorg/tachiyomi-extensions-inspector/releases/latest" | jq -r '.assets[0].browser_download_url')"
|
|
curl -L "$INSPECTOR_LINK" -o ./Inspector.jar
|
|
java -jar ./Inspector.jar "apk" "output.json" "tmp"
|
|
|
|
- name: Create repo artifacts
|
|
run: |
|
|
cd master
|
|
./.github/scripts/create-repo.sh
|
|
|
|
- name: Checkout repo branch
|
|
uses: actions/checkout@v2
|
|
with:
|
|
ref: repo
|
|
path: repo
|
|
|
|
- name: Deploy repo
|
|
run: |
|
|
cd repo
|
|
../master/.github/scripts/commit-repo.sh
|