File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed
src/test/java/pl/wavesoftware/eid Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -12,9 +12,11 @@ matrix:
1212 env : JACOCO=true COVERALLS=true
1313 - jdk : oraclejdk7
1414 env : JACOCO=true COVERALLS=true
15- script : mvn clean install sonar:sonar --fail-at-end
1615 - jdk : oraclejdk8
1716 env : JACOCO=true COVERALLS=true
17+ - jdk : openjdk7
18+ env : JACOCO=true GDMSESSION=sonar SONAR_ANALYSIS_MODE=publish
19+ script : mvn clean install -Dsonar.analysis.mode=publish --fail-at-end
1820 - jdk : openjdk6
1921 env : JACOCO=false
2022 - jdk : openjdk7
Original file line number Diff line number Diff line change 55import org .junit .rules .RuleChain ;
66import org .openjdk .jmh .annotations .Benchmark ;
77import org .openjdk .jmh .annotations .Mode ;
8- import org .openjdk .jmh .annotations .Threads ;
98import org .openjdk .jmh .infra .Blackhole ;
109import org .openjdk .jmh .results .RunResult ;
1110import org .openjdk .jmh .runner .Runner ;
@@ -50,7 +49,7 @@ public void doBenckmarking() throws Exception {
5049 .warmupIterations (2 )
5150 .measurementTime (TimeValue .seconds (1 ))
5251 .measurementIterations (5 )
53- .threads (Threads . MAX )
52+ .threads (4 )
5453 .forks (1 )
5554 .shouldFailOnError (true )
5655 .shouldDoGC (true )
Original file line number Diff line number Diff line change 99import org .openjdk .jmh .annotations .Scope ;
1010import org .openjdk .jmh .annotations .Setup ;
1111import org .openjdk .jmh .annotations .State ;
12- import org .openjdk .jmh .annotations .Threads ;
1312import org .openjdk .jmh .infra .Blackhole ;
1413import org .openjdk .jmh .results .RunResult ;
1514import org .openjdk .jmh .runner .Runner ;
@@ -59,7 +58,7 @@ public void doBenchmarking() throws RunnerException {
5958 .warmupIterations (1 )
6059 .measurementTime (TimeValue .seconds (1 ))
6160 .measurementIterations (3 )
62- .threads (Threads . MAX )
61+ .threads (4 )
6362 .forks (1 )
6463 .shouldFailOnError (true )
6564 .shouldDoGC (true )
You can’t perform that action at this time.
0 commit comments