Add stacktrace

This commit is contained in:
Erik C. Thauvin 2025-04-26 01:01:39 -07:00
parent 16420f5916
commit 046a2c3ccc
Signed by: erik
GPG key ID: 776702A6A2DA330E
3 changed files with 3 additions and 3 deletions

View file

@ -22,7 +22,7 @@ defaults_gradle: &defaults_gradle
key: gradle-dependencies-{{ checksum "build.gradle.kts" }} key: gradle-dependencies-{{ checksum "build.gradle.kts" }}
- run: - run:
name: Run All Checks name: Run All Checks
command: ./gradlew check command: ./gradlew check --stacktrace
- store_artifacts: - store_artifacts:
path: build/reports/ path: build/reports/
destination: reports destination: reports

View file

@ -22,7 +22,7 @@ build:
test: test:
stage: test stage: test
script: gradle check script: gradle check --stacktrace
cache: cache:
key: "$CI_COMMIT_REF_NAME" key: "$CI_COMMIT_REF_NAME"
policy: pull policy: pull

View file

@ -6,4 +6,4 @@ pipelines:
caches: caches:
- gradle - gradle
script: script:
- bash ./gradlew check - bash ./gradlew check --stacktrace