mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-30 22:20:21 +00:00
GitHub Actions: add Android build
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
6b334ac7d9
commit
d608f027d1
1 changed files with 34 additions and 0 deletions
34
.github/workflows/android.yml
vendored
Normal file
34
.github/workflows/android.yml
vendored
Normal file
|
@ -0,0 +1,34 @@
|
|||
name: Android
|
||||
on: push
|
||||
|
||||
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
|
||||
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
|
||||
|
Loading…
Reference in a new issue