-
Notifications
You must be signed in to change notification settings - Fork 125
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
SLE-1000: Specific ITs for the CDT integration
Move the CDT tests from the SonarQube Cloud axis and remove the dead code or references. Update the CI pipeline in order to parallelize the work IT tasks.
- Loading branch information
Showing
12 changed files
with
340 additions
and
110 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
Manifest-Version: 1.0 | ||
Bundle-ManifestVersion: 2 | ||
Bundle-Name: SonarLint for Eclipse ITs (CDT integration) | ||
Bundle-SymbolicName: org.sonarlint.eclipse.its.cdt;singleton:=true | ||
Bundle-Version: 1.0.0.qualifier | ||
Bundle-ClassPath: . | ||
Bundle-Vendor: SonarSource | ||
Require-Bundle: org.eclipse.jdt.core, | ||
org.eclipse.jdt.ui, | ||
org.eclipse.debug.core, | ||
org.eclipse.jdt.launching, | ||
org.eclipse.jface, | ||
org.eclipse.jface.text, | ||
org.eclipse.ui.workbench, | ||
org.eclipse.ui, | ||
org.eclipse.ui.ide, | ||
org.eclipse.core.runtime, | ||
org.eclipse.core.resources, | ||
org.eclipse.swt, | ||
org.eclipse.ui.forms, | ||
org.eclipse.search, | ||
org.eclipse.ui.editors, | ||
org.junit;bundle-version="4.11.0", | ||
org.eclipse.equinox.security, | ||
org.eclipse.ui.console, | ||
assertj-core, | ||
org.eclipse.reddeer.junit, | ||
org.eclipse.reddeer.requirements, | ||
org.eclipse.reddeer.eclipse, | ||
org.eclipse.reddeer.swt, | ||
org.eclipse.reddeer.common, | ||
org.eclipse.reddeer.workbench.core, | ||
org.eclipse.reddeer.workbench, | ||
org.eclipse.reddeer.jface, | ||
org.eclipse.reddeer.core, | ||
com.google.gson;bundle-version="2.9.1", | ||
org.apache.commons.commons-io;bundle-version="2.16.1", | ||
org.awaitility;bundle-version="4.2.2", | ||
org.hamcrest;bundle-version="2.2.0", | ||
minimal-json;bundle-version="0.9.5", | ||
org.apache.commons.exec;bundle-version="1.3.0", | ||
com.google.protobuf;bundle-version="3.25.1", | ||
org.sonarlint.eclipse.its.shared | ||
Import-Package: org.sonarlint.eclipse.ui.internal.views.issues | ||
Bundle-RequiredExecutionEnvironment: JavaSE-11 | ||
Bundle-ActivationPolicy: lazy | ||
Export-Package: org.sonarlint.eclipse.its.cdt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
source.. = src/ | ||
output.. = target/classes/ | ||
bin.includes = META-INF/,\ | ||
. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<?pde version="3.5"?> | ||
<product name="Runtime of the ITs (CDT integration)" | ||
uid="org.sonarlint.eclipse.its.cdt.product" | ||
id="org.eclipse.sdk.ide" | ||
application="org.eclipse.ui.ide.workbench" | ||
version="1" | ||
type="features" | ||
includeLaunchers="true" | ||
autoIncludeRequirements="true"> | ||
<configIni use="default"> | ||
</configIni> | ||
|
||
<launcherArgs> | ||
<programArgs>--launcher.defaultAction openFile --launcher.appendVmargs | ||
</programArgs> | ||
<vmArgs>-Dosgi.requiredJavaVersion=17 -Dosgi.dataAreaRequiresExplicitInit=true -Dorg.eclipse.swt.graphics.Resource.reportNonDisposed=true --add-modules=ALL-SYSTEM -Djava.security.manager=allow | ||
</vmArgs> | ||
<vmArgsMac>-XstartOnFirstThread -Dorg.eclipse.swt.internal.carbon.smallFonts | ||
</vmArgsMac> | ||
</launcherArgs> | ||
|
||
<launcher name="eclipse"> | ||
<win useIco="false"> | ||
<bmp/> | ||
</win> | ||
</launcher> | ||
|
||
<features> | ||
<feature id="org.eclipse.platform"/> | ||
<feature id="org.eclipse.cdt"/> | ||
<feature id="org.sonarlint.eclipse.feature"/> | ||
</features> | ||
|
||
<configurations> | ||
<plugin id="org.apache.aries.spifly.dynamic.bundle" autoStart="true" startLevel="2" /> | ||
<plugin id="org.apache.felix.scr" autoStart="true" startLevel="2" /> | ||
<plugin id="org.eclipse.core.runtime" autoStart="true" startLevel="4" /> | ||
<plugin id="org.eclipse.equinox.common" autoStart="true" startLevel="2" /> | ||
<plugin id="org.eclipse.equinox.event" autoStart="true" startLevel="2" /> | ||
<plugin id="org.eclipse.equinox.p2.reconciler.dropins" autoStart="true" startLevel="4" /> | ||
<plugin id="org.eclipse.equinox.simpleconfigurator" autoStart="true" startLevel="1" /> | ||
<property name="osgi.bundles.defaultStartLevel" value="4" /> | ||
<property name="eclipse.buildId" value="${unqualifiedVersion}.${buildQualifier}" /> | ||
<property name="org.eclipse.update.reconcile" value="false" /> | ||
<property name="osgi.instance.area.default" value="@user.home/workspace" /> | ||
<property name="osgi.instance.area.default" value="@user.home/Documents/workspace" os="macosx" /> | ||
</configurations> | ||
</product> |
Oops, something went wrong.