mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-12 02:39:05 +01:00
Compare commits
15 Commits
sqlite-jdb
...
ci-debuggi
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
b02d89967e | ||
|
|
65ce049737 | ||
|
|
335c360ef8 | ||
|
|
fc26aaa168 | ||
|
|
88224793c1 | ||
|
|
0bf74f6a69 | ||
|
|
4286621b02 | ||
|
|
b3e3b970ab | ||
|
|
ef10a08165 | ||
|
|
094e1f8b65 | ||
|
|
8b58bdb289 | ||
|
|
7f61061f15 | ||
|
|
cd127670bb | ||
|
|
a9b412be40 | ||
|
|
413360db09 |
@@ -11,8 +11,8 @@ test:
|
|||||||
- .gradle/caches
|
- .gradle/caches
|
||||||
|
|
||||||
script:
|
script:
|
||||||
- ./gradlew --no-daemon animalSnifferMain animalSnifferTest
|
- ./gradlew --no-daemon -Djava.security.egd=file:/dev/urandom animalSnifferMain animalSnifferTest
|
||||||
- ./gradlew --no-daemon test
|
- ./gradlew --no-daemon -Djava.security.egd=file:/dev/urandom test
|
||||||
|
|
||||||
after_script:
|
after_script:
|
||||||
# these file change every time but should not be cached
|
# these file change every time but should not be cached
|
||||||
|
|||||||
@@ -55,3 +55,8 @@ project.afterEvaluate {
|
|||||||
into 'src/main/res/raw'
|
into 'src/main/res/raw'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
tasks.withType(Test) {
|
||||||
|
// Use entropy-gathering device specified on command line, if any
|
||||||
|
systemProperty 'java.security.egd', System.getProperty('java.security.egd')
|
||||||
|
}
|
||||||
|
|||||||
@@ -31,3 +31,8 @@ task jarTest(type: Jar, dependsOn: testClasses) {
|
|||||||
artifacts {
|
artifacts {
|
||||||
testOutput jarTest
|
testOutput jarTest
|
||||||
}
|
}
|
||||||
|
|
||||||
|
tasks.withType(Test) {
|
||||||
|
// Use entropy-gathering device specified on command line, if any
|
||||||
|
systemProperty 'java.security.egd', System.getProperty('java.security.egd')
|
||||||
|
}
|
||||||
|
|||||||
@@ -44,3 +44,8 @@ task jarTest(type: Jar, dependsOn: testClasses) {
|
|||||||
artifacts {
|
artifacts {
|
||||||
testOutput jarTest
|
testOutput jarTest
|
||||||
}
|
}
|
||||||
|
|
||||||
|
tasks.withType(Test) {
|
||||||
|
// Use entropy-gathering device specified on command line, if any
|
||||||
|
systemProperty 'java.security.egd', System.getProperty('java.security.egd')
|
||||||
|
}
|
||||||
|
|||||||
@@ -26,5 +26,7 @@ dependencies {
|
|||||||
}
|
}
|
||||||
|
|
||||||
tasks.withType(Test) {
|
tasks.withType(Test) {
|
||||||
|
// Use entropy-gathering device specified on command line, if any
|
||||||
|
systemProperty 'java.security.egd', System.getProperty('java.security.egd')
|
||||||
systemProperty 'java.library.path', 'libs'
|
systemProperty 'java.library.path', 'libs'
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -186,4 +186,7 @@ project.afterEvaluate {
|
|||||||
preBuild.dependsOn.add(verifyTranslations)
|
preBuild.dependsOn.add(verifyTranslations)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
tasks.withType(Test) {
|
||||||
|
// Use entropy-gathering device specified on command line, if any
|
||||||
|
systemProperty 'java.security.egd', System.getProperty('java.security.egd')
|
||||||
|
}
|
||||||
|
|||||||
@@ -11,3 +11,8 @@ dependencies {
|
|||||||
|
|
||||||
signature 'org.codehaus.mojo.signature:java16:1.1@signature'
|
signature 'org.codehaus.mojo.signature:java16:1.1@signature'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
tasks.withType(Test) {
|
||||||
|
// Use entropy-gathering device specified on command line, if any
|
||||||
|
systemProperty 'java.security.egd', System.getProperty('java.security.egd')
|
||||||
|
}
|
||||||
|
|||||||
@@ -32,3 +32,8 @@ dependencies {
|
|||||||
|
|
||||||
signature 'org.codehaus.mojo.signature:java16:1.1@signature'
|
signature 'org.codehaus.mojo.signature:java16:1.1@signature'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
tasks.withType(Test) {
|
||||||
|
// Use entropy-gathering device specified on command line, if any
|
||||||
|
systemProperty 'java.security.egd', System.getProperty('java.security.egd')
|
||||||
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user