From c6a582586c03520de7ea9a51fae6a83fce215820 Mon Sep 17 00:00:00 2001 From: spinnakerbot Date: Fri, 23 Feb 2024 12:15:20 -0500 Subject: [PATCH] chore(dependencies): Autobump korkVersion (#6157) * chore(dependencies): Autobump korkVersion * chore(build): use --no-daemon for ecs integration tests since it seems to resolve hanging/out of memory errors when running locally * chore(build): increase the stack size to try to fix build failures *** java.lang.instrument ASSERTION FAILED ***: "!errorOutstanding" with message can't create name string at src/java.instrument/share/native/libinstrument/JPLISAgent.c line: 830 see https://stackoverflow.com/questions/60526670/what-is-the-meaning-cause-of-java-lang-instrument-assertion-failed-er * chore(build): try a bigger stack since the builds (e.g. https://github.com/spinnaker/clouddriver/actions/runs/8015292221/job/21914062873) keep failing. > Task :clouddriver-ecs:integrationTest *** java.lang.instrument ASSERTION FAILED ***: "!errorOutstanding" with message can't create name string at src/java.instrument/share/native/libinstrument/JPLISAgent.c line: 830 Exception: java.lang.OutOfMemoryError thrown from the UncaughtExceptionHandler in thread "mysql-cj-abandoned-connection-cleanup" --------- Co-authored-by: root Co-authored-by: David Byron --- .github/workflows/integration_tests.yml | 4 ++-- gradle.properties | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/integration_tests.yml b/.github/workflows/integration_tests.yml index 4e421bf611..c767e4f91a 100644 --- a/.github/workflows/integration_tests.yml +++ b/.github/workflows/integration_tests.yml @@ -7,7 +7,7 @@ on: pull_request: env: - GRADLE_OPTS: -Dorg.gradle.daemon=false -Xmx16g -Xms16g + GRADLE_OPTS: -Dorg.gradle.daemon=false -Xmx16g -Xms16g -Xss8192k jobs: it-test-kubernetes: @@ -41,7 +41,7 @@ jobs: ${{ runner.os }}-cd-it-${{ github.event.before }} # Separating integration tests by provider allows to have separate logs - name: Amazon ECS Provider Integration Tests - run: ./gradlew --build-cache :clouddriver-ecs:integrationTest + run: ./gradlew --build-cache --no-daemon :clouddriver-ecs:integrationTest - name: Artifacts Integration Tests run: ./gradlew --build-cache :clouddriver-artifacts:integrationTest - name: AWS EC2 Provider Integration Tests diff --git a/gradle.properties b/gradle.properties index cacb6b5e65..f595e2283f 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ fiatVersion=1.43.0 -korkVersion=7.214.0 +korkVersion=7.215.0 org.gradle.parallel=true spinnakerGradleVersion=8.32.1 targetJava11=true