Skip to content

Commit

Permalink
fix artifact copy
Browse files Browse the repository at this point in the history
  • Loading branch information
saberduck committed Oct 24, 2023
1 parent a647dfc commit b98300e
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .cirrus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ plugin_qa_sq_dev_task:
SONARJS_ARTIFACT: multi
MVN_TEST: '-Dtest=!EslintCustomRulesTest,!SonarJsIntegrationTest --projects !org.sonarsource.javascript:eslint-custom-rules-plugin'

# Plugin QA for Windows is splint into 2 parts to make it faster
# Plugin QA for Windows is splint into 3 parts to make it faster
plugin_qa_win_task:
depends_on:
- build
Expand All @@ -228,7 +228,7 @@ plugin_qa_win_task:
- mvn -f its/plugin/tests/pom.xml -Dsonar.runtimeVersion=${SQ_VERSION} "-Dtest=${TEST}" -B -e -V verify surefire-report:report
cleanup_before_cache_script: cleanup_maven_repository

# Plugin QA for Windows is splint into 2 parts to make it faster
# Plugin QA for Windows is splint into 3 parts to make it faster
plugin_qa_sonarlint_win_task:
depends_on:
- build
Expand Down
20 changes: 20 additions & 0 deletions its/plugin/sonarlint-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,26 @@
</goals>
<configuration>
<artifactItems>
<artifactItem>
<groupId>${project.groupId}</groupId>
<artifactId>sonar-javascript-plugin</artifactId>
<type>sonar-plugin</type>
<overWrite>true</overWrite>
</artifactItem>
<artifactItem>
<groupId>${project.groupId}</groupId>
<artifactId>sonar-javascript-plugin</artifactId>
<classifier>win-x64</classifier>
<type>sonar-plugin</type>
<overWrite>true</overWrite>
</artifactItem>
<artifactItem>
<groupId>${project.groupId}</groupId>
<artifactId>sonar-javascript-plugin</artifactId>
<classifier>linux-x64</classifier>
<type>sonar-plugin</type>
<overWrite>true</overWrite>
</artifactItem>
<artifactItem>
<groupId>${project.groupId}</groupId>
<artifactId>sonar-javascript-plugin</artifactId>
Expand Down

0 comments on commit b98300e

Please sign in to comment.