diff options
author | sfan5 <sfan5@live.de> | 2021-10-31 23:32:25 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-31 22:32:25 +0000 |
commit | 4114e3047bd2cc975d829f24d73991650817ad66 (patch) | |
tree | 42c439f81df640bedd73de080ffbbfca015a3c7c /.github | |
parent | cef016d393959e989df259aeacd055fc702a55ca (diff) | |
download | minetest-4114e3047bd2cc975d829f24d73991650817ad66.tar.gz minetest-4114e3047bd2cc975d829f24d73991650817ad66.tar.bz2 minetest-4114e3047bd2cc975d829f24d73991650817ad66.zip |
Update Android to new dependency repo (#11690)
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/android.yml | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml index 660b5c8df..cc5fe83ef 100644 --- a/.github/workflows/android.yml +++ b/.github/workflows/android.yml @@ -21,15 +21,13 @@ on: jobs: build: - runs-on: ubuntu-18.04 + runs-on: ubuntu-20.04 steps: - uses: actions/checkout@v2 - - name: Set up JDK 1.8 - uses: actions/setup-java@v1 - with: - java-version: 1.8 - name: Install deps - run: sudo apt-get update; sudo apt-get install -y --no-install-recommends gettext + run: | + sudo apt-get update + sudo apt-get install -y --no-install-recommends gettext openjdk-11-jdk-headless - name: Build with Gradle run: cd android; ./gradlew assemblerelease - name: Save armeabi artifact |