diff options
| author | Andre Weissflog <floooh@gmail.com> | 2020-01-19 13:24:14 +0100 |
|---|---|---|
| committer | Andre Weissflog <floooh@gmail.com> | 2020-01-19 13:24:14 +0100 |
| commit | d7b77c751f6887803dc4efbd3206b09bd94cad1f (patch) | |
| tree | 069b46acfd5f93690ca1535f82e6faab478bf1e3 /.github | |
| parent | 296fd779602f6637835d1842c7c82898126587cd (diff) | |
add an Android check to github actions
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/main.yml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 4c0fb98e..37edcfe9 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -173,3 +173,22 @@ jobs: run: | cd workspace/sokol-samples python fips build sapp-webgl2-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 |