2020-12-23 11:31:16 +00:00
|
|
|
name: Android
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [ master ]
|
|
|
|
pull_request:
|
|
|
|
branches: [ master ]
|
|
|
|
schedule:
|
|
|
|
- cron: '5 12 * * 0'
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
name: ${{ matrix.type }}-build
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2021-03-07 19:55:40 +00:00
|
|
|
type: [manager, libs, apps]
|
2020-12-23 11:31:16 +00:00
|
|
|
fail-fast: false
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
2021-02-17 20:28:21 +00:00
|
|
|
with:
|
|
|
|
fetch-depth: 2
|
2020-12-23 11:31:16 +00:00
|
|
|
|
|
|
|
- name: Set up JDK 1.9
|
|
|
|
uses: actions/setup-java@v1
|
|
|
|
with:
|
|
|
|
java-version: 1.9
|
|
|
|
|
|
|
|
- name: Setup Android SDK
|
|
|
|
uses: android-actions/setup-android@v2
|
|
|
|
|
|
|
|
- name: Cache dependencies
|
|
|
|
uses: actions/cache@v2.1.3
|
|
|
|
with:
|
|
|
|
path: 3rdParty/buildCache
|
|
|
|
key: android-${{ matrix.type }}-${{ hashFiles('android/*.sh') }}
|
|
|
|
|
2021-03-07 19:55:40 +00:00
|
|
|
- name: Build manager
|
|
|
|
if: ${{ success() && matrix.type == 'manager' }}
|
2020-12-23 11:31:16 +00:00
|
|
|
run: |
|
2021-03-07 19:55:40 +00:00
|
|
|
./android/ci_build_manager.sh
|
|
|
|
|
|
|
|
- name: Build libs
|
|
|
|
if: ${{ success() && matrix.type == 'libs' }}
|
|
|
|
run: ./android/ci_build_libraries.sh
|
|
|
|
|
|
|
|
- name: Build apps
|
|
|
|
if: ${{ success() && matrix.type == 'apps' }}
|
|
|
|
run: ./android/ci_build_apps.sh
|
2020-12-23 11:31:16 +00:00
|
|
|
|
|
|
|
- name: Deploy to BinTray
|
2021-03-07 19:55:40 +00:00
|
|
|
if: ${{ success() && ! contains(matrix.type, 'libs') }}
|
2020-12-23 11:31:16 +00:00
|
|
|
env:
|
|
|
|
BINTRAY_API_KEY: ${{ secrets.BINTRAY_API_KEY }}
|
|
|
|
PULL_REQUEST: ${{ github.event.number }}
|
|
|
|
PULL_REQUEST_SHA: ${{ github.event.pull_request.head.sha }}
|
|
|
|
run: ./deploy/prepare_deployment.sh android_${{ matrix.type }} && ./deploy/deploy_to_bintray.sh deploy/android_${{ matrix.type }}/
|
2021-01-04 13:02:50 +00:00
|
|
|
|
2021-03-22 19:32:57 +00:00
|
|
|
- name: Upload artifacts
|
|
|
|
uses: actions/upload-artifact@v2
|
2021-03-07 19:55:40 +00:00
|
|
|
if: ${{ ! contains(matrix.type, 'libs') }}
|
2021-01-04 13:02:50 +00:00
|
|
|
with:
|
|
|
|
name: android_${{ matrix.type }}_${{ github.event.pull_request.head.sha }}
|
|
|
|
path: deploy/android_${{ matrix.type }}/*.7z
|
2021-03-22 19:32:57 +00:00
|
|
|
|
|
|
|
- name: Upload coverage report
|
|
|
|
uses: codecov/codecov-action@v1
|
|
|
|
if: ${{ success() && matrix.type == 'manager' }}
|
|
|
|
with:
|
|
|
|
fail_ci_if_error: true
|
|
|
|
verbose: false
|