Skip to content

Commit

Permalink
Drop Android support
Browse files Browse the repository at this point in the history
Too much of a hassle rn to maintain, for something no one will use
  • Loading branch information
SilicDev committed Aug 15, 2024
1 parent 34ef397 commit 2f4aef6
Showing 1 changed file with 25 additions and 25 deletions.
50 changes: 25 additions & 25 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,18 +48,18 @@ jobs:
target: template_release
platform: macos
arch: x86_64
- identifier: android-debug
name: Android Debug
runner: ubuntu-20.04
target: template_debug
platform: android
arch: arm64
- identifier: android-release
name: Android Release
runner: ubuntu-20.04
target: template_release
platform: android
arch: arm64
# - identifier: android-debug
# name: Android Debug
# runner: ubuntu-20.04
# target: template_debug
# platform: android
# arch: arm64
# - identifier: android-release
# name: Android Release
# runner: ubuntu-20.04
# target: template_release
# platform: android
# arch: arm64

steps:
- name: (Windows) Install mingw64
Expand All @@ -70,21 +70,21 @@ jobs:
sudo update-alternatives --set x86_64-w64-mingw32-gcc /usr/bin/x86_64-w64-mingw32-gcc-posix
sudo update-alternatives --set x86_64-w64-mingw32-g++ /usr/bin/x86_64-w64-mingw32-g++-posix
- name: (Android) Set up Java 11
if: ${{ startsWith(matrix.identifier, 'android-') }}
uses: actions/setup-java@v1
with:
java-version: 11
# - name: (Android) Set up Java 11
# if: ${{ startsWith(matrix.identifier, 'android-') }}
# uses: actions/setup-java@v1
# with:
# java-version: 11

- name: (Android) Set up Android SDK
if: ${{ startsWith(matrix.identifier, 'android-') }}
uses: android-actions/setup-android@v2
# - name: (Android) Set up Android SDK
# if: ${{ startsWith(matrix.identifier, 'android-') }}
# uses: android-actions/setup-android@v2

- name: (Android) Install Android Tools
if: ${{ startsWith(matrix.identifier, 'android-') }}
shell: sh
run: |
"$ANDROID_SDK_ROOT"/cmdline-tools/latest/bin/sdkmanager --sdk_root="$ANDROID_SDK_ROOT" "platform-tools" "build-tools;30.0.3" "platforms;android-29" "cmdline-tools;latest" "cmake;3.10.2.4988404" "ndk;21.4.7075529"
# - name: (Android) Install Android Tools
# if: ${{ startsWith(matrix.identifier, 'android-') }}
# shell: sh
# run: |
# "$ANDROID_SDK_ROOT"/cmdline-tools/latest/bin/sdkmanager --sdk_root="$ANDROID_SDK_ROOT" "platform-tools" "build-tools;30.0.3" "platforms;android-29" "cmdline-tools;latest" "cmake;3.10.2.4988404" "ndk;21.4.7075529"

- name: Set up Python
uses: actions/setup-python@v2
Expand Down

0 comments on commit 2f4aef6

Please sign in to comment.