Skip to content

Commit

Permalink
Merge branch 'master' into ssl2
Browse files Browse the repository at this point in the history
  • Loading branch information
rainer-prosi committed Aug 2, 2023
2 parents e639396 + 802e93d commit bc742aa
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/toolbox-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,14 @@ jobs:
- name: Check out sources...
uses: actions/checkout@v2

- name: Authenticate to Google Cloud
uses: google-github-actions/auth@v1
with:
credentials_json: '${{ secrets.GCP_SA_KEY }}'

- name: Setup GCloud CLI
uses: GoogleCloudPlatform/github-actions/setup-gcloud@7159039b8c614f8ed6d9bd75af3f6113681a8ff4
uses: google-github-actions/setup-gcloud@v1
with:
version: '298.0.0'
service_account_key: ${{ secrets.GCP_SA_KEY }}
project_id: ${{ secrets.GCP_PROJECT_ID }}

- name: Docker Auth GCloud
Expand Down
13 changes: 13 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
import org.apache.tools.ant.filters.ReplaceTokens
import org.gradle.api.tasks.testing.logging.TestExceptionFormat
import org.gradle.api.tasks.testing.logging.TestLogEvent

plugins {
id 'java-library'
Expand Down Expand Up @@ -153,4 +155,15 @@ task fatJar(type: Jar) {
archiveAppendix = "fat"
from { configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) } }
with jar
}

tasks.withType(Test) {
testLogging {
events TestLogEvent.FAILED,
TestLogEvent.SKIPPED
exceptionFormat TestExceptionFormat.FULL
showExceptions true
showCauses true
showStackTraces true
}
}

0 comments on commit bc742aa

Please sign in to comment.