-
Notifications
You must be signed in to change notification settings - Fork 28
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
Modernize Xpect #324
Modernize Xpect #324
Conversation
@szarnekow @iloveeclipse would be nice if you also could have a look |
Jenkinsfile
Outdated
stage('test with Eclipse 2022-03 and Xtext nighly') { | ||
try{ | ||
sh "JAVA_HOME=${java11Home} ${mvnHome}/bin/mvn -P!plugins -P!xtext-examples -Dtycho-version=2.7.5 -Dtarget-platform=eclipse_2022_03-xtext_nightly ${mvnParams} clean integration-test" | ||
sh "JAVA_HOME=${java11Home} ${mvnHome}/bin/mvn -P!plugins -P!xtext-examples -Dtycho-version=2.7.5 -Dtarget-platform=eclipse_2023_06-xtext_nightly ${mvnParams} clean integration-test" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this does not seem to work.
202306 will need java 17 anyway
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh yes, this cannot work. Can we test the Jenkinsfile of this PR (after I have fixed it)? Jenkins builds this PR with the Jenkinsfile from master which fails (due to Java 8 etc.).
nice change. great achievement TODO / pot. follow ups
|
might want to bump versions here too |
Thanks for having a look! I didn't want to replace the Java Okay, if nobody is on Java 11 anymore, I set minimum Java version to 17 and switch to latest Eclipse release. I will refresh the deps etc. tomorrow. |
We can do the Java 17 move to a second step / pr |
Is there really a need to switch to Java 17? As long as Java 11 LTS is running we may stay with it? I would switch to Java 17 when Eclipse is requiring Java 17... |
Eclipse 2023-06 requires Java >= 17. |
Guess, I'm out of date... 😄 |
2ed5450
to
c806521
Compare
changes look good so far, but i still want to set this up locally to see how workspace looks like. |
Resolves #320