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: jobs:
build: build:
runs-on: ubuntu-latest 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: "17" java-version: "17"
cache: gradle cache: gradle
- name: Build - name: Build (verbose)
run: ./gradlew build -x test --no-daemon 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 runs-on: ubuntu-latest