From 046a2c3cccb3553c221e8938c1684826015f8a7f Mon Sep 17 00:00:00 2001 From: "Erik C. Thauvin" Date: Sat, 26 Apr 2025 01:01:39 -0700 Subject: [PATCH] Add stacktrace --- .circleci/config.yml | 2 +- .gitlab-ci.yml | 2 +- bitbucket-pipelines.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 2c66a78..fcc81ca 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -22,7 +22,7 @@ defaults_gradle: &defaults_gradle key: gradle-dependencies-{{ checksum "build.gradle.kts" }} - run: name: Run All Checks - command: ./gradlew check + command: ./gradlew check --stacktrace - store_artifacts: path: build/reports/ destination: reports diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 7f377e0..e73cce4 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -22,7 +22,7 @@ build: test: stage: test - script: gradle check + script: gradle check --stacktrace cache: key: "$CI_COMMIT_REF_NAME" policy: pull diff --git a/bitbucket-pipelines.yml b/bitbucket-pipelines.yml index f070ba6..265759f 100644 --- a/bitbucket-pipelines.yml +++ b/bitbucket-pipelines.yml @@ -6,4 +6,4 @@ pipelines: caches: - gradle script: - - bash ./gradlew check + - bash ./gradlew check --stacktrace