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