Skip to content

Commit

Permalink
chore(dependencies): Autobump korkVersion (spinnaker#6157)
Browse files Browse the repository at this point in the history
* 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 <root@91023be377be>
Co-authored-by: David Byron <[email protected]>
  • Loading branch information
3 people authored Feb 23, 2024
1 parent 3f31190 commit c6a5825
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/integration_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit c6a5825

Please sign in to comment.