update app #1238
Workflow file for this run
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
name: Build App | |
on: | |
push: | |
pull_request: | |
jobs: | |
build: | |
runs-on: [ubuntu-22.04, ubuntu-20.04, ubuntu-18.04] | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v2 | |
- name: Checkout submodules | |
run: git submodule update --init --recursive | |
- name: Setup Ionic | |
uses: coturiv/[email protected] | |
- name: Set up python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.8' | |
# - name: Set up JDK 1.8 | |
# uses: actions/setup-java@v1 | |
# with: | |
# java-version: 1.8 | |
- name: Setup Android SDK | |
uses: android-actions/setup-android@v2 | |
# - name: Install build-tools | |
# run: (echo y; echo y; echo y;) | sdkmanager "build-tools;28.0.3" | |
- name: Use build-tools 30 | |
run: | | |
sdkmanager --uninstall "build-tools;32.0.0" | |
sdkmanager --uninstall "build-tools;31.0.0" | |
- name: Build | |
run: | | |
./ToolChains/bin/build all -pf android --build | |
ls -l App/platforms/android/app/build/outputs/apk/debug |