diff options
| author | Andre Weissflog <floooh@gmail.com> | 2020-12-20 18:08:22 +0100 |
|---|---|---|
| committer | Andre Weissflog <floooh@gmail.com> | 2020-12-20 18:08:22 +0100 |
| commit | 95fc4fd4e99efb770c97857bd0ee31f3a89af5a4 (patch) | |
| tree | ea86bb3eb97a3d781a5e243ad120210ed943e64c /.github | |
| parent | 0399a9bfca06e7ea47b7b80a59e4b49b31c46930 (diff) | |
remove Android build step in github actions, seems like the Android SDK/NDK v21 is currently broken
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/main.yml | 38 |
1 files changed, 19 insertions, 19 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 4fd79e3a..ae0bf651 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -181,25 +181,25 @@ jobs: run: | cd workspace/sokol-samples python fips make cube-emsc wasm-ninja-release - android: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v1 - - name: prepare - run: | - mkdir workspace - cd workspace - git clone https://github.com/floooh/sokol-samples - cd sokol-samples - yes | python fips setup android - - name: sapp-android-make-debug - run: | - cd workspace/sokol-samples - python fips build sapp-android-make-debug - - name: sapp-android-make-release - run: | - cd workspace/sokol-samples - python fips build sapp-android-make-release +# android: +# runs-on: ubuntu-latest +# steps: +# - uses: actions/checkout@v1 +# - name: prepare +# run: | +# mkdir workspace +# cd workspace +# git clone https://github.com/floooh/sokol-samples +# cd sokol-samples +# yes | python fips setup android +# - name: sapp-android-make-debug +# run: | +# cd workspace/sokol-samples +# python fips build sapp-android-make-debug +# - name: sapp-android-make-release +# run: | +# cd workspace/sokol-samples +# python fips build sapp-android-make-release uwp: runs-on: windows-latest steps: |