Skip to content

Commit 395d1b3

Browse files
committed
AppVeyor: Fix the ITs
1 parent 20be1b3 commit 395d1b3

File tree

4 files changed

+14
-14
lines changed

4 files changed

+14
-14
lines changed

appveyor.ps1

+6-6
Original file line numberDiff line numberDiff line change
@@ -115,19 +115,19 @@ CALLSTACK:$(Get-PSCallStack | Out-String)
115115
}
116116
}
117117

118-
switch ($env:RUN_ITS)
118+
switch ($env:TEST)
119119
{
120-
"false"
120+
"CI"
121121
{
122122
mvn verify "--batch-mode" "-B" "-e" "-V"
123123
CheckLastExitCode
124124
}
125125

126-
"true"
126+
"PLUGIN"
127127
{
128128
InstallAppveyorTools
129129

130-
mvn install "--batch-mode" "-Dsource.skip=true" "-Denforcer.skip=true" "-Danimal.sniffer.skip=true" "-Dmaven.test.skip=true"
130+
mvn package "--batch-mode" "-Dsource.skip=true" "-Denforcer.skip=true" "-Danimal.sniffer.skip=true" "-Dmaven.test.skip=true"
131131
CheckLastExitCode
132132

133133
if ($env:SQ_VERSION -eq "DEV")
@@ -138,7 +138,7 @@ switch ($env:RUN_ITS)
138138
pushd its/plugin
139139
try
140140
{
141-
mvn install "--batch-mode" "-DcsharpVersion=""DEV""" "-Dsonar.runtimeVersion=""$env:SQ_VERSION""" "-Dmaven.test.redirectTestOutputToFile=false" "-Dsonar.jdbc.dialect=embedded" "-Dorchestrator.updateCenterUrl=http://update.sonarsource.org/update-center-dev.properties" "-Dmaven.localRepository=$env:USERPROFILE\.m2\repository"
141+
mvn test "--batch-mode" "-DcsharpVersion=""DEV""" "-Dsonar.runtimeVersion=""$env:SQ_VERSION""" "-Dmaven.test.redirectTestOutputToFile=false" "-Dsonar.jdbc.dialect=embedded" "-Dorchestrator.updateCenterUrl=http://update.sonarsource.org/update-center-dev.properties" "-Dmaven.localRepository=$env:USERPROFILE\.m2\repository"
142142
CheckLastExitCode
143143
}
144144
finally
@@ -149,6 +149,6 @@ switch ($env:RUN_ITS)
149149

150150
default
151151
{
152-
throw "RUN_ITS should be set to either ""true"" or ""false"", not: ""$env:RUN_ITS"""
152+
throw "Unexpected TEST mode: $env:TEST"
153153
}
154154
}

appveyor.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ install:
1111

1212
environment:
1313
matrix:
14-
- RUN_ITS: false
15-
- RUN_ITS: true
16-
SQ_VERSION: LTS_OR_OLDEST_COMPATIBLE
17-
- RUN_ITS: true
18-
SQ_VERSION: LATEST_RELEASE
19-
- RUN_ITS: true
14+
- TEST: CI
15+
- TEST: PLUGIN
2016
SQ_VERSION: DEV
17+
- TEST: PLUGIN
18+
SQ_VERSION: LTS
19+
- TEST: PLUGIN
20+
SQ_VERSION: LATEST_RELEASE
2121

2222
matrix:
2323
fast_finish: true

its/plugin/src/test/java/com/sonar/it/csharp/Tests.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,7 @@ public class Tests {
4444

4545
@ClassRule
4646
public static final Orchestrator ORCHESTRATOR = Orchestrator.builderEnv()
47-
.addPlugin(PLUGIN_KEY)
48-
.setMainPluginKey(PLUGIN_KEY)
47+
.addPlugin(FileLocation.of("../../target/sonar-csharp-plugin.jar"))
4948
.restoreProfileAtStartup(FileLocation.of("profiles/fxcop.xml"))
5049
.restoreProfileAtStartup(FileLocation.of("profiles/no_rule.xml"))
5150
.restoreProfileAtStartup(FileLocation.of("profiles/class_name.xml"))

pom.xml

+1
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,7 @@
118118
</dependencies>
119119

120120
<build>
121+
<finalName>${project.artifactId}</finalName>
121122
<plugins>
122123
<plugin>
123124
<groupId>org.apache.maven.plugins</groupId>

0 commit comments

Comments
 (0)