Skip to content

Commit

Permalink
Fix rotative tests
Browse files Browse the repository at this point in the history
  • Loading branch information
pdulth committed May 2, 2024
1 parent 9d3bbfd commit bc3ca5c
Show file tree
Hide file tree
Showing 17 changed files with 2,534 additions and 2,555 deletions.
14 changes: 7 additions & 7 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -71,25 +71,25 @@ pipeline {
}
}

stage('Run RCPTT Tests') {
stage('Run JUnit Tests') {
steps {
wrap([$class: 'Xvnc', takeScreenshot: false, useXauthority: true]) {
script {
sh 'mvn -Dmaven.test.failure.ignore=true verify -P rcptt -e'

sh "mvn -Dmaven.test.failure.ignore=true verify -P test -e"
}
}
}
}
}

stage('Run JUnit Tests') {
stage('Run RCPTT Tests') {
steps {
wrap([$class: 'Xvnc', takeScreenshot: false, useXauthority: true]) {
script {
sh "mvn -Dmaven.test.failure.ignore=true verify -P test -e"
sh 'mvn -Dmaven.test.failure.ignore=true verify -P rcptt -e'

}
}
}
}
}

stage('Publish tests results') {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,7 @@ location sirius "https://download.eclipse.org/sirius/updates/stable/7.4.1-S20240
org.eclipse.sirius.specifier.ide.ui.source.feature.group lazy
org.eclipse.sirius.specifier.ide.ui.acceleo.feature.group lazy
org.eclipse.sirius.specifier.ide.ui.acceleo.source.feature.group lazy
org.eclipse.acceleo.query.source.feature.group

org.eclipse.sirius.interpreter.feature.feature.group lazy
org.eclipse.sirius.properties.feature.feature.group lazy
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,10 @@ Require-Bundle: org.eclipse.ui,
org.eclipse.sirius.common.ui,
org.eclipse.sirius.diagram,
org.eclipse.sirius.diagram.ui,
org.eclipse.osgi
org.eclipse.osgi,
org.apache.batik.dom,
org.apache.batik.bridge,
org.apache.batik.transcoder
Bundle-RequiredExecutionEnvironment: JavaSE-17
Eclipse-LazyStart: true
Export-Package: org.polarsys.kitalpha.sirius.rotativeimage,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ Require-Bundle: org.junit,
org.eclipse.gmf.runtime.draw2d.ui,
org.eclipse.gmf.runtime.diagram.ui,
org.eclipse.sirius.common,
org.apache.batik.transcoder;bundle-version="1.14.0"
org.apache.batik.transcoder,
org.eclipse.emf.common.ui
Bundle-Vendor: %providerName
Import-Package: org.eclipse.core.runtime,
org.eclipse.gmf.runtime.diagram.ui.editparts

Large diffs are not rendered by default.

Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit bc3ca5c

Please sign in to comment.