Skip to content

Commit

Permalink
backports ci build speed improvements (#3597)
Browse files Browse the repository at this point in the history
Signed-off-by: Oleh Dokuka <odokuka@vmware.com>
Signed-off-by: OlegDokuka <odokuka@vmware.com>
  • Loading branch information
OlegDokuka authored and OlegDokuka committed Oct 9, 2023
1 parent 10c6ea6 commit a9d922d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,4 +80,4 @@ jobs:
- uses: gradle/gradle-build-action@842c587ad8aa4c68eeba24c396e15af4c2e9f30a # tag=v2
name: other tests
with:
arguments: check -x :reactor-core:test -x spotlessCheck --no-daemon
arguments: check -x :reactor-core:test -x spotlessCheck --no-daemon -Pjcstress.mode=sanity
2 changes: 1 addition & 1 deletion .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,4 +61,4 @@ jobs:
- uses: gradle/gradle-build-action@842c587ad8aa4c68eeba24c396e15af4c2e9f30a # tag=v2
name: other tests
with:
arguments: check -x :reactor-core:test -x spotlessCheck --no-daemon -DuseSnapshotMicrometerVersion=true
arguments: check -x :reactor-core:test -x spotlessCheck --no-daemon -DuseSnapshotMicrometerVersion=true -Pjcstress.mode=default
2 changes: 1 addition & 1 deletion reactor-core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ blockHoundTest {
}

jcstress {
mode = 'quick' //quick, default, tough
mode = project.hasProperty('jcstress.mode') ? project.getProperty('jcstress.mode') : 'quick'//quick, default, tough
jcstressDependency 'org.openjdk.jcstress:jcstress-core:0.16'
heapPerFork = 512
}
Expand Down

0 comments on commit a9d922d

Please sign in to comment.