Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [cdt-dev] cdt-verify jobs failing with "Failed to access p2 repository"

Doug Schaefer wrote:
> Yes, 4.7milestones has been removed. That happens after a while. The cdt.target file needs to be updated to point at the released 4.7 bits, which is in the 4.7 directory on the same path, i.e. without the 'milestones'.

I had to make the same change in an additional place to fix our Tycho build - it's a bit customized from the upstream CDT build though so I don't know if that applies there.

Without this, it would fail at "--- tycho-eclipserun-plugin:1.0.0:eclipse-run (default) @ org.eclipse.cdt.doc.user ---".

Can push to Gerrit if desired.

diff --git a/pom.xml b/pom.xml
index 8bd9d252b5..ec0041e014 100644
--- a/pom.xml
+++ b/pom.xml
@@ -26,7 +26,7 @@
 		<sonar.jacoco.reportPath>${project.basedir}/../../target/jacoco.exec</sonar.jacoco.reportPath>
 		<sonar.java.source>1.8</sonar.java.source>
 		<target-platform>cdt</target-platform>
-		<help-docs-eclipserun-repo>http://download.eclipse.org/eclipse/updates/4.7milestones</help-docs-eclipserun-repo>
+		<help-docs-eclipserun-repo>http://download.eclipse.org/eclipse/updates/4.7</help-docs-eclipserun-repo>
 		<tycho.scmUrl>scm:git:git://git.eclipse.org/gitroot/cdt/org.eclipse.cdt.git</tycho.scmUrl>
 		<base.test.vmargs>-Xms256m -Xmx512m -ea</base.test.vmargs>
 


 -Christian



Back to the top