23 lines
781 B
YAML
23 lines
781 B
YAML
|
name: Build
|
||
|
|
||
|
jobs:
|
||
|
BuildAndTest:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- name: Check out repository code
|
||
|
uses: actions/checkout@v4
|
||
|
with:
|
||
|
fetch-depth: 0
|
||
|
- name: Fetch tags
|
||
|
run: git fetch --tags -p
|
||
|
- uses: actions/setup-java@v4
|
||
|
with:
|
||
|
distribution: 'temurin'
|
||
|
java-version: '17'
|
||
|
- name: Setup Android SDK
|
||
|
uses: android-actions/setup-android@v3
|
||
|
- name: Configure gradle...
|
||
|
run: mkdir -p ~/.gradle && echo "org.gradle.daemon=false\nignoreGitVersion=true\nsystemProp.org.gradle.internal.http.connectionTimeout=180000\nsystemProp.org.gradle.internal.http.socketTimeout=180000" >> ~/.gradle/gradle.properties
|
||
|
- name: Build and test
|
||
|
run: ./gradlew build --stacktrace
|