Compare commits
2 Commits
af280ca88c
...
4998701f84
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
4998701f84 | ||
|
|
dfe44927ef |
@@ -8,23 +8,26 @@ on:
|
|||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
runs-on: ubuntu-latest:host
|
runs-on: ubuntu-latest
|
||||||
|
timeout-minutes: 30
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Set up JDK 19
|
- name: Set up JDK 17
|
||||||
uses: actions/setup-java@v4
|
uses: actions/setup-java@v4
|
||||||
with:
|
with:
|
||||||
distribution: temurin
|
distribution: temurin
|
||||||
java-version: "19"
|
java-version: "17"
|
||||||
cache: gradle
|
cache: gradle
|
||||||
|
|
||||||
- name: Build
|
- name: Build (verbose)
|
||||||
run: ./gradlew -q assemble
|
env:
|
||||||
|
GRADLE_OPTS: "-Dorg.gradle.internal.http.connectionTimeout=60000 -Dorg.gradle.internal.http.socketTimeout=60000"
|
||||||
|
run: ./gradlew build -x test --no-daemon --info --stacktrace
|
||||||
|
|
||||||
deploy:
|
deploy:
|
||||||
runs-on: ubuntu-latest:host
|
runs-on: ubuntu-latest
|
||||||
needs: build
|
needs: build
|
||||||
steps:
|
steps:
|
||||||
- name: Trigger deploy webhook
|
- name: Trigger deploy webhook
|
||||||
|
|||||||
Reference in New Issue
Block a user