-
Notifications
You must be signed in to change notification settings - Fork 102
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
43 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
# Temporarily disabled because google once again changed the build process and broke builds that worked previously | ||
# | ||
# Will be fixed later... | ||
|
||
#org.gradle.process.internal.ExecException: A problem occurred starting process | ||
# 'command '/usr/local/lib/android/sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/i686-linux-android-strip'' | ||
|
||
|
||
name: Android | ||
|
||
on: | ||
push: | ||
pull_request: | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@master | ||
- name: Checkout submodules | ||
run: git submodule update --init --recursive | ||
|
||
- name: Download SDL | ||
run: ./tools/sdl_download.sh | ||
|
||
- name: Setup interactive tmate session | ||
uses: mxschmitt/action-tmate@v3 | ||
|
||
- name: invoke cmake to create gradle / android studio project | ||
# This will create the project | ||
# build_android/hello_imgui_demodocking_AndroidStudio | ||
run: | | ||
export ANDROID_HOME=/usr/local/lib/android/sdk | ||
mkdir build_android | ||
cd build_android | ||
../tools/android/cmake_arm-android.sh | ||
- name: gradlew build | ||
# This will build for all android architectures | ||
run: | | ||
export ANDROID_HOME=/usr/local/lib/android/sdk | ||
cd build_android/hello_imgui_demodocking_AndroidStudio | ||
./gradlew build |
This file was deleted.
Oops, something went wrong.