Compare commits

...

10 Commits

Author SHA1 Message Date
a1b7569ef0 Merge pull request 'pipeline-test' (#15) from pipeline-test into main
All checks were successful
Gitea Android Builder / Build (push) Successful in 59s
Reviewed-on: #15
2025-03-04 22:06:06 +03:00
d1bc545a07
CI/CD time optimization attempt 6
All checks were successful
Gitea Android Builder / Build (push) Successful in 55s
2025-03-04 23:44:32 +05:00
9c184c08a8
CI/CD time optimization attempt 6
Some checks failed
Gitea Android Builder / Build (push) Failing after 54s
2025-03-04 23:40:39 +05:00
186f1e693c
CI/CD time optimization attempt 5
Some checks failed
Gitea Android Builder / Build (push) Failing after 46s
2025-03-04 23:36:03 +05:00
3e6e44c4b3
CI/CD time optimization attempt 5
Some checks failed
Gitea Android Builder / Build (push) Failing after 58s
2025-03-04 23:32:49 +05:00
da80ba3abd
CI/CD time optimization attempt 5
All checks were successful
Gitea Android Builder / Build (push) Successful in 57s
2025-03-04 23:27:17 +05:00
f05f4fbbad
CI/CD time optimization attempt 4
All checks were successful
Gitea Android Builder / Build (push) Successful in 1m3s
2025-03-04 23:18:04 +05:00
91a8b0380b
CI/CD time optimization attempt 3
All checks were successful
Gitea Android Builder / Build (push) Successful in 1m8s
2025-03-04 23:15:46 +05:00
3b196de1d8
CI/CD time optimization attempt 2
All checks were successful
Gitea Android Builder / Build (push) Successful in 55s
2025-03-04 22:43:32 +05:00
b4beaf4f94
CI/CD time optimization attempt
All checks were successful
Gitea Android Builder / Build (push) Successful in 2m58s
2025-03-04 22:37:45 +05:00
2 changed files with 12 additions and 2 deletions

View File

@ -4,6 +4,7 @@ on:
push:
branches:
- main
- pipeline-test
jobs:
Build:
@ -12,7 +13,7 @@ jobs:
- name: Checkout the repo
uses: actions/checkout@v4
- name: Set up JDK 23
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
java-version: '23'
distribution: 'temurin'
@ -20,6 +21,13 @@ jobs:
uses: android-actions/setup-android@v3
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Cache Gradle packages
uses: actions/cache@v3
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
- name: Build with Gradle
uses: gradle/gradle-build-action@v2
with:

View File

@ -21,3 +21,5 @@ kotlin.code.style=official
# resources declared in the library itself and none from the library's dependencies,
# thereby reducing the size of the R class for that library
android.nonTransitiveRClass=true
org.gradle.caching=true
org.gradle.parallel=true