-
Hey everyone 👋 I need some help with the feasibility of the following matter: Currently, I'm building my own "version" of Eclipse once in a while for testing via the latest integration builds (like this one). This is done by downloading the OS-specific version, unpacking it, and running the I'd like to automate this as the download link can be templated with the date and time from the integration build. The issue is that I missed the information on whether the integration build was unstable or not. The information is displayed on the page of the specific build but I was hoping that I don't have to scrape this page in order to see if it was unstable or not. So my question is: What did I miss, or is there actually another way to retrieve the information if the integration build is unstable or not (like from the build or somewhere else) as I try to automate it to only pick the latest, stable integration build? Best, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 10 replies
-
Hello @thahnen, Would this help (from https://download.eclipse.org/eclipse/downloads/)? The information is here: |
Beta Was this translation helpful? Give feedback.
Update sites are always created (often one needs this update site to test breakage) but if unstable they are not added to the composite https://download.eclipse.org/eclipse/updates/4.32-I-builds/ .
So best path is fetch https://www.eclipse.org/downloads/download.php?file=/eclipse/updates/4.32-I-builds/compositeContent.jar parst the xml in it and use the latest I-build listed there - that's the last stable build.