mirror of
https://github.com/i2p/i2p.i2p.git
synced 2026-03-29 07:39:57 +00:00
8 lines
170 B
Bash
Executable File
8 lines
170 B
Bash
Executable File
#! /bin/sh
|
|
|
|
if [ "$TRAVIS_JDK_VERSION" = "oraclejdk11" ]; then
|
|
./gradlew sonarqube codeCoverageReport -Dsonar.verbose=true
|
|
else
|
|
./gradlew check codeCoverageReport
|
|
fi
|