From e90869cc9c7bda411e8a515dad6e6f30a2028204 Mon Sep 17 00:00:00 2001 From: sunerok <8443713+justinvforvendetta@users.noreply.github.com> Date: Mon, 22 Jul 2024 21:32:13 -0400 Subject: [PATCH 1/3] Create android.yml --- .github/workflows/android.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/android.yml diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml new file mode 100644 index 0000000..a8194c1 --- /dev/null +++ b/.github/workflows/android.yml @@ -0,0 +1,26 @@ +name: Android Building + +on: + push: + branches: [ "master" ] + pull_request: + branches: [ "master" ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + - name: set up JDK 11 + uses: actions/setup-java@v3 + with: + java-version: '11' + distribution: 'temurin' + cache: gradle + + - name: Grant execute permission for gradlew + run: chmod +x gradlew + - name: Build with Gradle + run: ./gradlew build From 7de7a32c9158e85e0e8c76c11c84d21dcb68a378 Mon Sep 17 00:00:00 2001 From: sunerok <8443713+justinvforvendetta@users.noreply.github.com> Date: Tue, 23 Jul 2024 10:05:48 -0400 Subject: [PATCH 2/3] update android workflow --- .github/workflows/android.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml index a8194c1..6fcf0ba 100644 --- a/.github/workflows/android.yml +++ b/.github/workflows/android.yml @@ -16,7 +16,7 @@ jobs: - name: set up JDK 11 uses: actions/setup-java@v3 with: - java-version: '11' + java-version: '17' distribution: 'temurin' cache: gradle From 2c02f15a020f29014a7b87b96a41bfadbd0f2f2f Mon Sep 17 00:00:00 2001 From: sunerok <8443713+justinvforvendetta@users.noreply.github.com> Date: Tue, 23 Jul 2024 10:09:48 -0400 Subject: [PATCH 3/3] Update android.yml --- .github/workflows/android.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml index 6fcf0ba..ca551ac 100644 --- a/.github/workflows/android.yml +++ b/.github/workflows/android.yml @@ -13,7 +13,7 @@ jobs: steps: - uses: actions/checkout@v4 - - name: set up JDK 11 + - name: set up JDK 17 uses: actions/setup-java@v3 with: java-version: '17'