Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Mwf custom config #431

Closed
wants to merge 11 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions ci/jenkins/run-tests
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ pipeline {
steps {
dir('liberty-tools-eclipse') {
// Clone git repo
git branch: 'main',
url: 'https://github.com/OpenLiberty/liberty-tools-eclipse.git'
git branch: 'mwf-custom-config',
url: 'https://github.com/scottkurz/liberty-tools-eclipse.git'
}
}
}
Expand Down Expand Up @@ -50,6 +50,8 @@ pipeline {
} finally {
sh "cd tests/target/surefire-reports && zip -r 2Q2023-test-reports.zip ."
archiveArtifacts artifacts: 'tests/target/surefire-reports/2Q2023-test-reports.zip', fingerprint: true
archiveArtifacts artifacts: 'tests/MWF*.log', fingerprint: false

}
}
}
Expand Down
22 changes: 22 additions & 0 deletions releng/target-platform-2Q2023/target-platform-2Q2023.target
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,28 @@
<version>3.3</version>
<type>jar</type>
</dependency>

<!-- https://mvnrepository.com/artifact/org.apache.commons/commons-lang3 -->
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.13.0</version>
</dependency>

</dependencies>
</location>
<location includeDependencyDepth="infinite" includeDependencyScopes="compile" missingManifest="generate" type="Maven">
<dependencies>
<dependency>
<groupId>com.automation-remarks</groupId>
<artifactId>video-recorder-junit5</artifactId>
<version>2.0</version>
</dependency>
<dependency>
<groupId>com.automation-remarks</groupId>
<artifactId>video-recorder-core</artifactId>
<version>2.0</version>
</dependency>
</dependencies>
</location>
<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="planner" includeSource="true" type="InstallableUnit">
Expand Down
6 changes: 5 additions & 1 deletion tests/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,14 @@ Bundle-RequiredExecutionEnvironment: JavaSE-17
Require-Bundle: junit-jupiter-api;bundle-version="[5.8.0,6.0.0)",
org.eclipse.ui,
org.hamcrest.library;bundle-version="[1.3.0,2.2)"
Import-Package: io.openliberty.tools.eclipse,
Import-Package: com.automation.remarks.junit5,
com.automation.remarks.video.annotations,
org.aeonbits.owner,
io.openliberty.tools.eclipse,
io.openliberty.tools.eclipse.ui.dashboard,
io.openliberty.tools.eclipse.ui.launch,
io.openliberty.tools.eclipse.ui.launch.shortcuts,
org.apache.commons.lang3,
org.eclipse.buildship.core,
org.eclipse.core.resources,
org.eclipse.core.runtime,
Expand Down
2 changes: 2 additions & 0 deletions tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@
<trimStackTrace>false</trimStackTrace>
<runOrder>alphabetical</runOrder>
<systemProperties>
<video.screen.size>1024x768</video.screen.size>
<video.save.mode>ALL</video.save.mode>
<org.eclipse.swtbot.search.timeout>20000</org.eclipse.swtbot.search.timeout>
<io.liberty.tools.eclipse.tests.mvnexecutable.path>${mvnPath}</io.liberty.tools.eclipse.tests.mvnexecutable.path>
<io.liberty.tools.eclipse.tests.app.import.wait>${testAppImportWait}</io.liberty.tools.eclipse.tests.app.import.wait>
Expand Down

This file was deleted.

Binary file not shown.

This file was deleted.

This file was deleted.

Loading