mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
build-system: update GitHub Action to use current android container
This brings the scripts and the container in use back into sync. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
cb4ccea3c2
commit
706f44a13c
1 changed files with 12 additions and 20 deletions
32
.github/workflows/android.yml
vendored
32
.github/workflows/android.yml
vendored
|
@ -11,7 +11,7 @@ jobs:
|
||||||
buildInContainer:
|
buildInContainer:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
container:
|
container:
|
||||||
image: docker://subsurface/android-build-container:5.13.12
|
image: docker://subsurface/android-build-container:5.15.1
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: checkout sources
|
- name: checkout sources
|
||||||
|
@ -19,24 +19,16 @@ jobs:
|
||||||
|
|
||||||
- name: run build
|
- name: run build
|
||||||
run: |
|
run: |
|
||||||
cd ..
|
# this is rather awkward, but it allows us to use the preinstalled
|
||||||
ln -s /android/Qt .
|
# Android and Qt versions with relative paths
|
||||||
ln -s /android/android-ndk-r18b .
|
cd $GITHUB_WORKSPACE/..
|
||||||
ln -s /android/android-sdk-linux .
|
ln -s /android/5.15.* .
|
||||||
|
ln -s /android/build-tools .
|
||||||
|
ln -s /android/cmdline-tools .
|
||||||
|
ln -s /android/ndk .
|
||||||
|
ln -s /android/platform-tools .
|
||||||
|
ln -s /android/platforms .
|
||||||
|
ln -s /android/tools .
|
||||||
ls -l
|
ls -l
|
||||||
bash -x subsurface/packaging/android/android-build-wrapper.sh
|
bash -x ./subsurface/packaging/android/qmake-build.sh
|
||||||
cp /__w/subsurface/subsurface-mobile-build-arm64/*mobile*/build/outputs/apk/debug/subsurface-mobile-arm64-v8a-debug.apk ${GITHUB_WORKSPACE}/Subsurface-mobile.arm64.apk
|
|
||||||
cp /__w/subsurface/subsurface-mobile-build-arm/*mobile*/build/outputs/apk/debug/subsurface-mobile-armeabi-v7a-debug.apk ${GITHUB_WORKSPACE}/Subsurface-mobile.apk
|
|
||||||
|
|
||||||
- name: prepare PR artifacts
|
|
||||||
if: github.event_name == 'pull_request'
|
|
||||||
run: |
|
|
||||||
mkdir -p Android-artifacts
|
|
||||||
mv Subsurface-mobile.apk Subsurface-mobile.arm64.apk Android-artifacts
|
|
||||||
|
|
||||||
- name: PR artifacts
|
|
||||||
if: github.event_name == 'pull_request'
|
|
||||||
uses: actions/upload-artifact@master
|
|
||||||
with:
|
|
||||||
name: Android-artifacts
|
|
||||||
path: Android-artifacts
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue