2019-10-18 16:32:38 +00:00
|
|
|
name: Android
|
2019-10-26 01:04:01 +00:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- master
|
2019-10-18 16:32:38 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
buildInContainer:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
container:
|
|
|
|
image: docker://dirkhh/android-builder:5.13.01
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: checkout sources
|
|
|
|
uses: actions/checkout@v1
|
|
|
|
|
|
|
|
- name: run build
|
|
|
|
run: |
|
|
|
|
cd ..
|
|
|
|
ln -s /android/Qt .
|
|
|
|
ln -s /android/android-ndk-r18b .
|
|
|
|
ln -s /android/android-sdk-linux .
|
|
|
|
ls -l
|
|
|
|
bash -x subsurface/packaging/android/android-build-wrapper.sh
|
|
|
|
cp /__w/subsurface/subsurface-mobile-build-arm64//build/outputs/apk/debug/subsurface-mobile-build-arm64-debug.apk ${GITHUB_WORKSPACE}/Subsurface-mobile.arm64.apk
|
|
|
|
cp /__w/subsurface/subsurface-mobile-build-arm//build/outputs/apk/debug/subsurface-mobile-build-arm-debug.apk ${GITHUB_WORKSPACE}/Subsurface-mobile.apk
|
|
|
|
|
|
|
|
- name: create CI release
|
2019-10-26 02:07:03 +00:00
|
|
|
if: github.event_name == 'push'
|
2019-10-18 16:32:38 +00:00
|
|
|
uses: ./.github/actions/release
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
GITHUB_REPO: ${{ github.repository }}
|
|
|
|
REF: ${{ github.ref }}
|
|
|
|
COMMIT: ${{ github.sha }}
|
|
|
|
BIN1: ./Subsurface-mobile.apk
|
|
|
|
BIN2: ./Subsurface-mobile.arm64.apk
|
|
|
|
|
2019-10-25 20:53:48 +00:00
|
|
|
- name: copy to transfer.sh
|
2019-10-26 02:07:03 +00:00
|
|
|
if: github.event_name == 'pull_request'
|
2019-10-25 20:53:48 +00:00
|
|
|
run: |
|
2019-10-26 01:49:15 +00:00
|
|
|
apt-get update
|
2019-10-25 20:53:48 +00:00
|
|
|
apt-get install -y curl
|
2019-10-26 02:07:03 +00:00
|
|
|
curl --upload-file Subsurface-mobile.apk "https://transfer.sh/Subsurface-mobile.apk"
|
|
|
|
curl --upload-file Subsurface-mobile.arm64.apk "https://transfer.sh/Subsurface-mobile.arm64.apk"
|