mirror of https://github.com/apache/archiva.git
Fixing build and test configuration
This commit is contained in:
parent
3732f2e072
commit
214bdc4360
|
@ -31,7 +31,7 @@ pipeline {
|
|||
withMaven(maven: buildMvn, jdk: buildJdk,
|
||||
mavenSettingsConfig: deploySettings,
|
||||
mavenLocalRepo: ".repository",
|
||||
options: [artifactsPublisher(disabled: true), junitPublisher(disabled: true, ignoreAttachments: false)]
|
||||
publisherStrategy='EXPLICIT'
|
||||
)
|
||||
{
|
||||
sh "chmod 755 ./src/ci/scripts/prepareWorkspace.sh"
|
||||
|
@ -54,10 +54,16 @@ pipeline {
|
|||
}
|
||||
post {
|
||||
always {
|
||||
junit testDataPublishers: [[$class: 'StabilityTestDataPublisher']], testResults: '**/target/surefire-reports/TEST-*.xml'
|
||||
junit testResults: '**/target/surefire-reports/TEST-*.xml'
|
||||
}
|
||||
success {
|
||||
archiveArtifacts '**/target/*.war,**/target/*-bin.zip'
|
||||
script {
|
||||
def previousResult = currentBuild.previousBuild?.result
|
||||
if (previousResult && previousResult != currentBuild.result) {
|
||||
notifyBuild("Fixed")
|
||||
}
|
||||
}
|
||||
}
|
||||
failure {
|
||||
notifyBuild("Build / Test failure")
|
||||
|
|
|
@ -293,7 +293,7 @@
|
|||
<artifactId>maven-surefire-plugin</artifactId>
|
||||
<configuration>
|
||||
<systemPropertyVariables>
|
||||
<appserver.base>${project.build.directory}/test-repository</appserver.base>
|
||||
<appserver.base>${project.build.directory}/appserver-base</appserver.base>
|
||||
</systemPropertyVariables>
|
||||
</configuration>
|
||||
</plugin>
|
||||
|
|
|
@ -121,7 +121,7 @@ public class TestConfiguration
|
|||
StringUtils.isNotEmpty(configuration.getArchivaRuntimeConfiguration().getDataDirectory())) {
|
||||
return Paths.get(configuration.getArchivaRuntimeConfiguration().getDataDirectory());
|
||||
} else {
|
||||
return getAppServerBaseDir().resolve("");
|
||||
return getAppServerBaseDir().resolve("data");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -578,7 +578,7 @@ public class Maven2RepositoryMetadataResolverTest
|
|||
public void testGetRootNamespaces()
|
||||
throws Exception
|
||||
{
|
||||
assertEquals( Arrays.asList( "com", "org", "remotes"), storage.listRootNamespaces( TEST_REPO_ID, ALL ) );
|
||||
assertEquals( Arrays.asList( "com", "org"), storage.listRootNamespaces( TEST_REPO_ID, ALL ) );
|
||||
}
|
||||
|
||||
@Test
|
||||
|
|
Loading…
Reference in New Issue