File tree 4 files changed +14
-14
lines changed
its/plugin/src/test/java/com/sonar/it/csharp
4 files changed +14
-14
lines changed Original file line number Diff line number Diff line change @@ -115,19 +115,19 @@ CALLSTACK:$(Get-PSCallStack | Out-String)
115
115
}
116
116
}
117
117
118
- switch ($env: RUN_ITS )
118
+ switch ($env: TEST )
119
119
{
120
- " false "
120
+ " CI "
121
121
{
122
122
mvn verify " --batch-mode" " -B" " -e" " -V"
123
123
CheckLastExitCode
124
124
}
125
125
126
- " true "
126
+ " PLUGIN "
127
127
{
128
128
InstallAppveyorTools
129
129
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"
131
131
CheckLastExitCode
132
132
133
133
if ($env: SQ_VERSION -eq " DEV" )
@@ -138,7 +138,7 @@ switch ($env:RUN_ITS)
138
138
pushd its/ plugin
139
139
try
140
140
{
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"
142
142
CheckLastExitCode
143
143
}
144
144
finally
@@ -149,6 +149,6 @@ switch ($env:RUN_ITS)
149
149
150
150
default
151
151
{
152
- throw " RUN_ITS should be set to either "" true "" or "" false "" , not: "" $env: RUN_ITS "" "
152
+ throw " Unexpected TEST mode: $env: TEST "
153
153
}
154
154
}
Original file line number Diff line number Diff line change @@ -11,13 +11,13 @@ install:
11
11
12
12
environment :
13
13
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
20
16
SQ_VERSION : DEV
17
+ - TEST : PLUGIN
18
+ SQ_VERSION : LTS
19
+ - TEST : PLUGIN
20
+ SQ_VERSION : LATEST_RELEASE
21
21
22
22
matrix :
23
23
fast_finish : true
Original file line number Diff line number Diff line change @@ -44,8 +44,7 @@ public class Tests {
44
44
45
45
@ ClassRule
46
46
public static final Orchestrator ORCHESTRATOR = Orchestrator .builderEnv ()
47
- .addPlugin (PLUGIN_KEY )
48
- .setMainPluginKey (PLUGIN_KEY )
47
+ .addPlugin (FileLocation .of ("../../target/sonar-csharp-plugin.jar" ))
49
48
.restoreProfileAtStartup (FileLocation .of ("profiles/fxcop.xml" ))
50
49
.restoreProfileAtStartup (FileLocation .of ("profiles/no_rule.xml" ))
51
50
.restoreProfileAtStartup (FileLocation .of ("profiles/class_name.xml" ))
Original file line number Diff line number Diff line change 118
118
</dependencies >
119
119
120
120
<build >
121
+ <finalName >${project.artifactId} </finalName >
121
122
<plugins >
122
123
<plugin >
123
124
<groupId >org.apache.maven.plugins</groupId >
You can’t perform that action at this time.
0 commit comments