Make CI build verbose
Some checks failed
build / deploy (push) Has been cancelled
build / build (push) Has been cancelled

This commit is contained in:
deploy
2026-01-26 17:12:45 +05:30
parent dfe44927ef
commit 4998701f84

View File

@@ -9,19 +9,22 @@ on:
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up JDK 19
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: "17"
cache: gradle
- name: Build
run: ./gradlew build -x test --no-daemon
- name: Build (verbose)
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:
runs-on: ubuntu-latest