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

config: removal of s390x #928

Merged
merged 1 commit into from
Oct 29, 2022
Merged

Conversation

rnveach
Copy link
Contributor

@rnveach rnveach commented Oct 29, 2022

This removed s390x because travis is having issues running it and also synchronizes configuration with what is found in eclipse-cs.

Comparison at #928 (comment)

@coveralls
Copy link

coveralls commented Oct 29, 2022

Coverage Status

Coverage remained the same at 98.798% when pulling a2cd7bf on rnveach:config_test into 03d5a0b on sevntu-checkstyle:master.

@@ -26,7 +26,6 @@ jobs:
include:
# eclipse-cs
- jdk: openjdk11
arch: s390x
Copy link
Contributor Author

@rnveach rnveach Oct 29, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

https://app.travis-ci.com/github/sevntu-checkstyle/sevntu.checkstyle/jobs/587030329#L2539

Caused by: java.lang.RuntimeException: Could not determine SWT implementation fragment bundle for environment {osgi.os=linux, osgi.ws=gtk, org.eclipse.update.install.features=true, osgi.arch=ppc64le}

    at org.eclipse.tycho.p2.util.resolution.ProjectorResolutionStrategy.fixSWT (ProjectorResolutionStrategy.java:162)

    at org.eclipse.tycho.p2.util.resolution.ProjectorResolutionStrategy.resolve (ProjectorResolutionStrategy.java:96)

    at org.eclipse.tycho.p2.util.resolution.AbstractResolutionStrategy.resolve (AbstractResolutionStrategy.java:42)

    at org.eclipse.tycho.p2.resolver.P2ResolverImpl.resolveDependencies (P2ResolverImpl.java:194)

    at org.eclipse.tycho.p2.resolver.P2ResolverImpl.resolveDependencies (P2ResolverImpl.java:115)

    at org.eclipse.tycho.p2.resolver.P2DependencyResolver.doResolveDependencies (P2DependencyResolver.java:368)

    at org.eclipse.tycho.p2.resolver.P2DependencyResolver.resolveDependencies (P2DependencyResolver.java:336)

    at org.eclipse.tycho.core.resolver.DefaultTychoResolver.resolveProject (DefaultTychoResolver.java:117)

    at org.eclipse.tycho.core.maven.TychoMavenLifecycleParticipant.afterProjectsRead (TychoMavenLifecycleParticipant.java:95)

Copy link
Contributor Author

@rnveach rnveach Oct 29, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@rnveach
Copy link
Contributor Author

rnveach commented Oct 29, 2022

It appears upgrading tycho fixes this in the current CI run:
https://app.travis-ci.com/github/sevntu-checkstyle/sevntu.checkstyle/jobs/587030914#L1471

I am comparing output from previous runs.

@rnveach
Copy link
Contributor Author

rnveach commented Oct 29, 2022

Old run: https://app.travis-ci.com/github/sevntu-checkstyle/sevntu.checkstyle/jobs/586914601#L1513
New rerun to confirm it continues to pass and it does.

The new run has the following:

[�[1;33mWARNING�[m] The following locally built units have been used to resolve project dependencies:
[�[1;33mWARNING�[m]   net.sf.eclipsecs.ui/10.0.0.202210291840
[�[1;33mWARNING�[m]   net.sf.eclipsecs.checkstyle/10.0.0.202210291840
[�[1;33mWARNING�[m]   net.sf.eclipsecs.core/10.0.0.202210291840
[�[1;33mWARNING�[m] Bundle-ClassPath entry runtime_registry_compatibility.jar does not exist in /home/travis/.m2/repository/p2/osgi/bundle/org.eclipse.equinox.registry/3.5.200.v20120522-1841/org.eclipse.equinox.registry-3.5.200.v20120522-1841.jar
[�[1;33mWARNING�[m] Bundle-ClassPath entry e4-ide.jar does not exist in /home/travis/.m2/repository/p2/osgi/bundle/org.eclipse.ui.ide/3.8.2.v20121106-165923/org.eclipse.ui.ide-3.8.2.v20121106-165923.jar
[�[1;33mWARNING�[m] Bundle-ClassPath entry e4-workbench.jar does not exist in /home/travis/.m2/repository/p2/osgi/bundle/org.eclipse.ui.workbench/3.104.0.v20130204-164612/org.eclipse.ui.workbench-3.104.0.v20130204-164612.jar
[�[1;33mWARNING�[m] Bundle-ClassPath entry compatibility.jar does not exist in /home/travis/.m2/repository/p2/osgi/bundle/org.eclipse.ui.workbench/3.104.0.v20130204-164612/org.eclipse.ui.workbench-3.104.0.v20130204-164612.jar
[�[1;33mWARNING�[m] Bundle-ClassPath entry icu-data.jar does not exist in /home/travis/.m2/repository/p2/osgi/bundle/com.ibm.icu/4.4.2.v20110823/com.ibm.icu-4.4.2.v20110823.jar
[�[1;33mWARNING�[m] Bundle-ClassPath entry injection_annotations.jar does not exist in /home/travis/.m2/repository/p2/osgi/bundle/org.eclipse.e4.core.services/1.0.0.v20120521-2346/org.eclipse.e4.core.services-1.0.0.v20120521-2346.jar
[�[1;33mWARNING�[m] Bundle-ClassPath entry tools.jar does not exist in /home/travis/.m2/repository/p2/osgi/bundle/org.eclipse.jdt.debug/3.7.101.v20120913-153601/org.eclipse.jdt.debug-3.7.101.v20120913-153601.jar

While the old run was just:

[�[1;33mWARNING�[m] The following locally built units have been used to resolve project dependencies:
[�[1;33mWARNING�[m]   net.sf.eclipsecs.core/10.0.0.202210280103
[�[1;33mWARNING�[m]   net.sf.eclipsecs.checkstyle/10.0.0.202210280103
[�[1;33mWARNING�[m]   net.sf.eclipsecs.ui/10.0.0.202210280103

@rnveach rnveach marked this pull request as ready for review October 29, 2022 19:32
@rnveach rnveach requested a review from romani October 29, 2022 19:37
@romani romani merged commit 9520aff into sevntu-checkstyle:master Oct 29, 2022
@rnveach rnveach deleted the config_test branch October 29, 2022 23:25
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants