[JBoss JIRA] (JBIDE-22728) Script the process for jbosstools projects to move up to the latest parent pom in their root pom & all-tests pom; verify that changes are valid & push to origin
by Nick Boldt (JIRA)
[ https://issues.jboss.org/browse/JBIDE-22728?page=com.atlassian.jira.plugi... ]
Nick Boldt updated JBIDE-22728:
-------------------------------
Attachment: getProjectRootPomParents.tsk.txt
console.log.txt
PR to support fixing root poms and creating branches:
https://github.com/jbosstools/jbosstools-build-ci/pull/152/files
Sample run of getProjectRootPomParents.sh, with PR applied:
[^console.log.txt]
Scriptlet created when you run getProjectRootPomParents.sh, which someone with God Mode Powers on the various repos can then run:
[^getProjectRootPomParents.tsk.txt]
> Script the process for jbosstools projects to move up to the latest parent pom in their root pom & all-tests pom; verify that changes are valid & push to origin
> ----------------------------------------------------------------------------------------------------------------------------------------------------------------
>
> Key: JBIDE-22728
> URL: https://issues.jboss.org/browse/JBIDE-22728
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: build
> Affects Versions: 4.4.1.AM1
> Reporter: Nick Boldt
> Assignee: Nick Boldt
> Fix For: 4.4.1.Final
>
> Attachments: console.log.txt, getProjectRootPomParents.tsk.txt
>
>
> Current process for moving all the JBT projects to the latest parent pom involves generating 15+ JIRAs assigned to the various project leads, so they can all adopt the latest parent pom, verify their build works, and push the change.
> With the advent of PR build jobs, we can now streamline this a little:
> instead of creating Task JIRAs, create PRs & let them run automatically.
> if they pass, push them in automatically (via script that Alexey or Denis would run)
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
9 years, 7 months
[JBoss JIRA] (JBIDE-19453) Remote host information does not fit in the server editor
by Snjezana Peco (JIRA)
[ https://issues.jboss.org/browse/JBIDE-19453?page=com.atlassian.jira.plugi... ]
Snjezana Peco edited comment on JBIDE-19453 at 8/19/16 4:29 PM:
----------------------------------------------------------------
I can't reproduce the issue on Fedora 23 and Windows 7.
[~rob.stryker],
I have tried to create a patch for https://bugs.eclipse.org/bugs/show_bug.cgi?id=464223 using your snippet, but it breaks Eclipse Manifest editor as well as all editors that use some wrapped controls.
The only thing I have succeeded is creating a simpler version of your workaround:
{code}
ScrolledPageBook book = new ScrolledPageBook(parent, SWT.H_SCROLL | SWT.V_SCROLL) {
@Override
public void reflow(boolean flushCache) {
super.reflow(flushCache);
Point size = getContent().computeSize(SWT.DEFAULT, SWT.DEFAULT);
setMinSize(size);
FormUtil.updatePageIncrement(this);
}
};
toolkit.adapt(book, true, true);
book.setMenu(parent.getMenu());
{code}
{code}
// If I change style to SWT.H_SCROLL | SWT.V_SCROLL, it changes the color from white to grey
// in the server editor, and the toolkit's attempt to change colors does not occur. Very strange.
preferencePageBook = toolkit.createPageBook(this, SWT.NONE);
{code}
The issue only happens on GTK. It has been introduced by https://bugs.eclipse.org/bugs/show_bug.cgi?id=463127
See https://git.eclipse.org/r/#/c/45906/3/bundles/org.eclipse.swt/Eclipse+SWT...
Eclipse uses the theme background if a widget has the SWT.H_SCROLL or SWT.V_SCROLL style.
was (Author: snjeza):
I can't reproduce the issue on Fedora 23 and Windows 7.
[~rob.stryker],
I have tried to create a patch for https://bugs.eclipse.org/bugs/show_bug.cgi?id=464223 using your snippet, but it breaks Eclipse Manifest editor as well as all editors that use some wrapped controls.
The only thing I have succeeded is creating a simpler version of your workaround:
{source}
ScrolledPageBook book = new ScrolledPageBook(parent, SWT.H_SCROLL | SWT.V_SCROLL) {
@Override
public void reflow(boolean flushCache) {
super.reflow(flushCache);
Point size = getContent().computeSize(SWT.DEFAULT, SWT.DEFAULT);
setMinSize(size);
FormUtil.updatePageIncrement(this);
}
};
toolkit.adapt(book, true, true);
book.setMenu(parent.getMenu());
{source}
{source}
// If I change style to SWT.H_SCROLL | SWT.V_SCROLL, it changes the color from white to grey
// in the server editor, and the toolkit's attempt to change colors does not occur. Very strange.
preferencePageBook = toolkit.createPageBook(this, SWT.NONE);
{source}
The issue only happens on GTK. It has been introduced by https://bugs.eclipse.org/bugs/show_bug.cgi?id=463127
See https://git.eclipse.org/r/#/c/45906/3/bundles/org.eclipse.swt/Eclipse+SWT...
Eclipse uses the theme background if a widget has the SWT.H_SCROLL or SWT.V_SCROLL style.
> Remote host information does not fit in the server editor
> ---------------------------------------------------------
>
> Key: JBIDE-19453
> URL: https://issues.jboss.org/browse/JBIDE-19453
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: server
> Affects Versions: 4.2.3.Beta1
> Reporter: Martin Malina
> Assignee: Snjezana Peco
> Priority: Minor
> Labels: help_wanted
> Fix For: LATER
>
> Attachments: remote-runtime-does-not-fit.png, server-editor-2.png, server-editor-linux.png
>
>
> Today I noticed this. When I set up a remote server and then open it in the Server editor, the part under Server Behavior where it shows the remote host configuration (e.g. Remote Server Home) does not fix - it needs more space to the right, but it's hidden and there is no way to scroll to view it.
> !remote-runtime-does-not-fit.png!
> The same problem applies to both JBDS 8.1.0.Beta1 and JBDS 9.0.0.Alpha1. So you may want to clone this for 4.3.x.
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
9 years, 7 months
[JBoss JIRA] (JBIDE-19453) Remote host information does not fit in the server editor
by Snjezana Peco (JIRA)
[ https://issues.jboss.org/browse/JBIDE-19453?page=com.atlassian.jira.plugi... ]
Snjezana Peco commented on JBIDE-19453:
---------------------------------------
I can't reproduce the issue on Fedora 23 and Windows 7.
[~rob.stryker],
I have tried to create a patch for https://bugs.eclipse.org/bugs/show_bug.cgi?id=464223 using your snippet, but it breaks Eclipse Manifest editor as well as all editors that use some wrapped controls.
The only thing I have succeeded is creating a simpler version of your workaround:
{source}
ScrolledPageBook book = new ScrolledPageBook(parent, SWT.H_SCROLL | SWT.V_SCROLL) {
@Override
public void reflow(boolean flushCache) {
super.reflow(flushCache);
Point size = getContent().computeSize(SWT.DEFAULT, SWT.DEFAULT);
setMinSize(size);
FormUtil.updatePageIncrement(this);
}
};
toolkit.adapt(book, true, true);
book.setMenu(parent.getMenu());
{source}
{source}
// If I change style to SWT.H_SCROLL | SWT.V_SCROLL, it changes the color from white to grey
// in the server editor, and the toolkit's attempt to change colors does not occur. Very strange.
preferencePageBook = toolkit.createPageBook(this, SWT.NONE);
{source}
The issue only happens on GTK. It has been introduced by https://bugs.eclipse.org/bugs/show_bug.cgi?id=463127
See https://git.eclipse.org/r/#/c/45906/3/bundles/org.eclipse.swt/Eclipse+SWT...
Eclipse uses the theme background if a widget has the SWT.H_SCROLL or SWT.V_SCROLL style.
> Remote host information does not fit in the server editor
> ---------------------------------------------------------
>
> Key: JBIDE-19453
> URL: https://issues.jboss.org/browse/JBIDE-19453
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: server
> Affects Versions: 4.2.3.Beta1
> Reporter: Martin Malina
> Assignee: Snjezana Peco
> Priority: Minor
> Labels: help_wanted
> Fix For: LATER
>
> Attachments: remote-runtime-does-not-fit.png, server-editor-2.png, server-editor-linux.png
>
>
> Today I noticed this. When I set up a remote server and then open it in the Server editor, the part under Server Behavior where it shows the remote host configuration (e.g. Remote Server Home) does not fix - it needs more space to the right, but it's hidden and there is no way to scroll to view it.
> !remote-runtime-does-not-fit.png!
> The same problem applies to both JBDS 8.1.0.Beta1 and JBDS 9.0.0.Alpha1. So you may want to clone this for 4.3.x.
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
9 years, 7 months
[JBoss JIRA] (JBDS-3994) Local jbdevstudio-product build always fails to download sources
by Nick Boldt (JIRA)
[ https://issues.jboss.org/browse/JBDS-3994?page=com.atlassian.jira.plugin.... ]
Nick Boldt reassigned JBDS-3994:
--------------------------------
Assignee: Denis Golovin (was: Nick Boldt)
> Local jbdevstudio-product build always fails to download sources
> ----------------------------------------------------------------
>
> Key: JBDS-3994
> URL: https://issues.jboss.org/browse/JBDS-3994
> Project: Red Hat JBoss Developer Studio (devstudio)
> Issue Type: Enhancement
> Components: build
> Affects Versions: 10.1.0.AM3
> Environment: 1. No maven local repository;
> 2. latest master;
> 3. mvn clean install;
> 4. Windows 10 Home.
> Reporter: Denis Golovin
> Assignee: Denis Golovin
> Fix For: 10.x
>
> Attachments: src-zip-created.png, windows10-version-info.png
>
>
> {code}[INFO] --- repository-utils:0.25.1-SNAPSHOT:generate-repository-facade (generate-facade) @ com.jboss.devstudio.core.site ---
> [WARNING] No C:\p\rh\jbds-releng\jbdevstudio-product\site\target\repository\web/site.css found; using default.
> [INFO] Building zip: C:\p\rh\jbds-releng\jbdevstudio-product\site\target\com.jboss.devstudio.core.site-10.1.0-SNAPSHOT.zip
> [INFO]
> [INFO] --- repository-utils:0.25.1-SNAPSHOT:fetch-sources-from-manifests (fetch-sources) @ com.jboss.devstudio.core.site ---
> [INFO] Downloaded: jbosstools-base_6ec1deba2610a94a14d160a7b54ae4f708c40044_sources.zip (23.6 M)
> [INFO] Downloaded: jbosstools-browsersim_019a66b4cef24d489c5bad2c0324477e32871222_sources.zip (3.2 M)
> [INFO] Downloaded: jbosstools-central_4cef5b7e1c70b213b372fcb5b7ba1c0834e5bff9_sources.zip (8.2 M)
> [INFO] Downloaded: jbosstools-forge_6beb7d3b3218e8b02d0497d38915574f9eaf8c1f_sources.zip (430.3 k)
> [INFO] Downloaded: jbosstools-freemarker_43ccb5369f1b9bdbd99466755af6158a3c39cea8_sources.zip (379.1 k)
> [INFO] Downloaded: jbosstools-hibernate_3e9fb83570c5c7c521f92d3f05c77b67355477d0_sources.zip (26.9 M)
> [INFO] Downloaded: jbosstools-javaee_a3e97d0495026b043ff151ac65412ba64bcfc1ff_sources.zip (46.2 M)
> [INFO] Downloaded: jbosstools-openshift_810571f6aff04eb4a4b0b986e9ad4c0f16796b25_sources.zip (1.8 M)
> [INFO] Downloaded: jbosstools-server_226292c9076be1a5e6f6779e6727fbc5d38af0be_sources.zip (34.6 M)
> [INFO] Downloaded: jbosstools-vpe_bd95b9c63a5b05bec19afe483f8224cf07c8aef8_sources.zip (3.5 M)
> [INFO] ------------------------------------------------------------------------
> [INFO] Reactor Summary:
> [INFO]
> [INFO] devstudio - Product, Installers .................... SUCCESS [ 0.708 s]
> [INFO] devstudio - Product Plugins - Core ................. SUCCESS [ 0.224 s]
> [INFO] com.jboss.devstudio.core ........................... SUCCESS [ 12.617 s]
> [INFO] com.jboss.devstudio.core.project.examples .......... SUCCESS [ 0.664 s]
> [INFO] com.jboss.devstudio.core.usage.branding ............ SUCCESS [ 0.823 s]
> [INFO] com.jboss.devstudio.core.central ................... SUCCESS [ 2.297 s]
> [INFO] com.jboss.devstudio.core.capabilities .............. SUCCESS [ 0.503 s]
> [INFO] devstudio - Product Features - Core ................ SUCCESS [ 0.073 s]
> [INFO] com.jboss.devstudio.core.feature ................... SUCCESS [ 1.305 s]
> [INFO] com.jboss.devstudio.core.feature.source ............ SUCCESS [ 1.219 s]
> [INFO] com.jboss.devstudio.core.capabilities.feature ...... SUCCESS [ 0.406 s]
> [INFO] com.jboss.devstudio.core.capabilities.feature.source SUCCESS [ 0.406 s]
> [INFO] com.jboss.devstudio.core.site ...................... FAILURE [04:26 min]
> [INFO] p2-director ........................................ SKIPPED
> [INFO] com.jboss.devstudio.core.p2.director ............... SKIPPED
> [INFO] p2-director ........................................ SKIPPED
> [INFO] installer .......................................... SKIPPED
> [INFO] ------------------------------------------------------------------------
> [INFO] BUILD FAILURE
> [INFO] ------------------------------------------------------------------------
> [INFO] Total time: 05:22 min
> [INFO] Finished at: 2016-08-10T19:36:46-07:00
> [INFO] Final Memory: 147M/1484M
> [INFO] ------------------------------------------------------------------------
> [ERROR] Failed to execute goal org.jboss.tools.tycho-plugins:repository-utils:0.25.1-SNAPSHOT:fetch-sources-from-manifests (fetch-sources) on project com.jboss.devstudio.core.site: Problem occurred checking upstream buildinfo.json files!
> [ERROR]
> [ERROR] C:\p\rh\jbds-releng\jbdevstudio-product\site\target\buildinfo\buildinfo_jbosstools-build-sites.json
> [ERROR] contains 91249e8dd7f99e9b517cccf99b201dc263efe11a, but upstream jbosstools-build-sites project's MANIFEST.MF has Eclipse-SourceReferences
> [ERROR] commitId 337bd38cb5eb530dd039ddbbaa311fb36161e726.
> [ERROR]
> [ERROR] If you have locally built projects which are being aggregated here, ensure
> [ERROR] they are built from the latest SHA from HEAD, not a local topic branch.
> [ERROR]
> [ERROR] It's also possible that some recent changes have not yet been built upstream.
> [ERROR] If that's the case, trigger a build for the jbosstools-build-sites project
> [ERROR] to ensure that the latest commits have been built and can be aggregated here.{code}
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
9 years, 7 months
[JBoss JIRA] (JBDS-3994) Local jbdevstudio-product build always fails to download sources
by Nick Boldt (JIRA)
[ https://issues.jboss.org/browse/JBDS-3994?page=com.atlassian.jira.plugin.... ]
Nick Boldt edited comment on JBDS-3994 at 8/19/16 3:59 PM:
-----------------------------------------------------------
*CANNOT REPRODUCE* on Windows 10 Pro.
With no c:\users\nickb\.m2\repository folder, I ran this build and ended up with 819M in c:\users\nickb\.m2\repository and a successful build on Windows 10.
{code}
mvn clean verify -DBUILD_ALIAS=GA
[INFO] Reactor Summary:
[INFO]
[INFO] devstudio - Product, Installers .................... SUCCESS [ 26.024 s]
...
[INFO] installer .......................................... SUCCESS [09:31 min]
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 56:37 min
[INFO] Finished at: 2016-08-19T15:45:33-04:00
[INFO] Final Memory: 155M/414M
[INFO] ------------------------------------------------------------------------{code}
This includes a 228M devstudio-10.1.0.GA-src.zip file in C:\WORK\jbdevstudio-product\site\target as expected.
If you then cd into the results folder and run a build in that folder, you get devstudio-10.1.0.GA-v20160819-1917-src.zip:
{code}
cd results
mvn clean verify -DBUILD_ALIAS=GA
[INFO] Total time: 04:45 min
{code}
[^src-zip-created.png]
was (Author: nickboldt):
With no c:\users\nickb\.m2\repository folder, I ran this build and ended up with 819M in c:\users\nickb\.m2\repository and a successful build on Windows 10.
{code}
mvn clean verify -DBUILD_ALIAS=GA
[INFO] Reactor Summary:
[INFO]
[INFO] devstudio - Product, Installers .................... SUCCESS [ 26.024 s]
...
[INFO] installer .......................................... SUCCESS [09:31 min]
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 56:37 min
[INFO] Finished at: 2016-08-19T15:45:33-04:00
[INFO] Final Memory: 155M/414M
[INFO] ------------------------------------------------------------------------{code}
This includes a 228M devstudio-10.1.0.GA-src.zip file in C:\WORK\jbdevstudio-product\site\target as expected.
If you then cd into the results folder and run a build in that folder, you get devstudio-10.1.0.GA-v20160819-1917-src.zip:
{code}
cd results
mvn clean verify -DBUILD_ALIAS=GA
[INFO] Total time: 04:45 min
{code}
[^src-zip-created.png]
> Local jbdevstudio-product build always fails to download sources
> ----------------------------------------------------------------
>
> Key: JBDS-3994
> URL: https://issues.jboss.org/browse/JBDS-3994
> Project: Red Hat JBoss Developer Studio (devstudio)
> Issue Type: Enhancement
> Components: build
> Affects Versions: 10.1.0.AM3
> Environment: 1. No maven local repository;
> 2. latest master;
> 3. mvn clean install;
> 4. Windows 10 Home.
> Reporter: Denis Golovin
> Assignee: Denis Golovin
> Fix For: 10.x
>
> Attachments: src-zip-created.png, windows10-version-info.png
>
>
> {code}[INFO] --- repository-utils:0.25.1-SNAPSHOT:generate-repository-facade (generate-facade) @ com.jboss.devstudio.core.site ---
> [WARNING] No C:\p\rh\jbds-releng\jbdevstudio-product\site\target\repository\web/site.css found; using default.
> [INFO] Building zip: C:\p\rh\jbds-releng\jbdevstudio-product\site\target\com.jboss.devstudio.core.site-10.1.0-SNAPSHOT.zip
> [INFO]
> [INFO] --- repository-utils:0.25.1-SNAPSHOT:fetch-sources-from-manifests (fetch-sources) @ com.jboss.devstudio.core.site ---
> [INFO] Downloaded: jbosstools-base_6ec1deba2610a94a14d160a7b54ae4f708c40044_sources.zip (23.6 M)
> [INFO] Downloaded: jbosstools-browsersim_019a66b4cef24d489c5bad2c0324477e32871222_sources.zip (3.2 M)
> [INFO] Downloaded: jbosstools-central_4cef5b7e1c70b213b372fcb5b7ba1c0834e5bff9_sources.zip (8.2 M)
> [INFO] Downloaded: jbosstools-forge_6beb7d3b3218e8b02d0497d38915574f9eaf8c1f_sources.zip (430.3 k)
> [INFO] Downloaded: jbosstools-freemarker_43ccb5369f1b9bdbd99466755af6158a3c39cea8_sources.zip (379.1 k)
> [INFO] Downloaded: jbosstools-hibernate_3e9fb83570c5c7c521f92d3f05c77b67355477d0_sources.zip (26.9 M)
> [INFO] Downloaded: jbosstools-javaee_a3e97d0495026b043ff151ac65412ba64bcfc1ff_sources.zip (46.2 M)
> [INFO] Downloaded: jbosstools-openshift_810571f6aff04eb4a4b0b986e9ad4c0f16796b25_sources.zip (1.8 M)
> [INFO] Downloaded: jbosstools-server_226292c9076be1a5e6f6779e6727fbc5d38af0be_sources.zip (34.6 M)
> [INFO] Downloaded: jbosstools-vpe_bd95b9c63a5b05bec19afe483f8224cf07c8aef8_sources.zip (3.5 M)
> [INFO] ------------------------------------------------------------------------
> [INFO] Reactor Summary:
> [INFO]
> [INFO] devstudio - Product, Installers .................... SUCCESS [ 0.708 s]
> [INFO] devstudio - Product Plugins - Core ................. SUCCESS [ 0.224 s]
> [INFO] com.jboss.devstudio.core ........................... SUCCESS [ 12.617 s]
> [INFO] com.jboss.devstudio.core.project.examples .......... SUCCESS [ 0.664 s]
> [INFO] com.jboss.devstudio.core.usage.branding ............ SUCCESS [ 0.823 s]
> [INFO] com.jboss.devstudio.core.central ................... SUCCESS [ 2.297 s]
> [INFO] com.jboss.devstudio.core.capabilities .............. SUCCESS [ 0.503 s]
> [INFO] devstudio - Product Features - Core ................ SUCCESS [ 0.073 s]
> [INFO] com.jboss.devstudio.core.feature ................... SUCCESS [ 1.305 s]
> [INFO] com.jboss.devstudio.core.feature.source ............ SUCCESS [ 1.219 s]
> [INFO] com.jboss.devstudio.core.capabilities.feature ...... SUCCESS [ 0.406 s]
> [INFO] com.jboss.devstudio.core.capabilities.feature.source SUCCESS [ 0.406 s]
> [INFO] com.jboss.devstudio.core.site ...................... FAILURE [04:26 min]
> [INFO] p2-director ........................................ SKIPPED
> [INFO] com.jboss.devstudio.core.p2.director ............... SKIPPED
> [INFO] p2-director ........................................ SKIPPED
> [INFO] installer .......................................... SKIPPED
> [INFO] ------------------------------------------------------------------------
> [INFO] BUILD FAILURE
> [INFO] ------------------------------------------------------------------------
> [INFO] Total time: 05:22 min
> [INFO] Finished at: 2016-08-10T19:36:46-07:00
> [INFO] Final Memory: 147M/1484M
> [INFO] ------------------------------------------------------------------------
> [ERROR] Failed to execute goal org.jboss.tools.tycho-plugins:repository-utils:0.25.1-SNAPSHOT:fetch-sources-from-manifests (fetch-sources) on project com.jboss.devstudio.core.site: Problem occurred checking upstream buildinfo.json files!
> [ERROR]
> [ERROR] C:\p\rh\jbds-releng\jbdevstudio-product\site\target\buildinfo\buildinfo_jbosstools-build-sites.json
> [ERROR] contains 91249e8dd7f99e9b517cccf99b201dc263efe11a, but upstream jbosstools-build-sites project's MANIFEST.MF has Eclipse-SourceReferences
> [ERROR] commitId 337bd38cb5eb530dd039ddbbaa311fb36161e726.
> [ERROR]
> [ERROR] If you have locally built projects which are being aggregated here, ensure
> [ERROR] they are built from the latest SHA from HEAD, not a local topic branch.
> [ERROR]
> [ERROR] It's also possible that some recent changes have not yet been built upstream.
> [ERROR] If that's the case, trigger a build for the jbosstools-build-sites project
> [ERROR] to ensure that the latest commits have been built and can be aggregated here.{code}
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
9 years, 7 months
[JBoss JIRA] (JBDS-3994) Local jbdevstudio-product build always fails to download sources
by Nick Boldt (JIRA)
[ https://issues.jboss.org/browse/JBDS-3994?page=com.atlassian.jira.plugin.... ]
Nick Boldt edited comment on JBDS-3994 at 8/19/16 3:58 PM:
-----------------------------------------------------------
With no c:\users\nickb\.m2\repository folder, I ran this build and ended up with 819M in c:\users\nickb\.m2\repository and a successful build on Windows 10.
{code}
mvn clean verify -DBUILD_ALIAS=GA
[INFO] Reactor Summary:
[INFO]
[INFO] devstudio - Product, Installers .................... SUCCESS [ 26.024 s]
...
[INFO] installer .......................................... SUCCESS [09:31 min]
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 56:37 min
[INFO] Finished at: 2016-08-19T15:45:33-04:00
[INFO] Final Memory: 155M/414M
[INFO] ------------------------------------------------------------------------{code}
This includes a 228M devstudio-10.1.0.GA-src.zip file in C:\WORK\jbdevstudio-product\site\target as expected.
If you then cd into the results folder and run a build in that folder, you get devstudio-10.1.0.GA-v20160819-1917-src.zip:
{code}
cd results
mvn clean verify -DBUILD_ALIAS=GA
[INFO] Total time: 04:45 min
{code}
[^src-zip-created.png]
was (Author: nickboldt):
With no c:\users\nickb\.m2\repository folder, I ran this build and ended up with 819M in c:\users\nickb\.m2\repository and a successful build on Windows 10.
{code}
mvn clean verify -DBUILD_ALIAS=GA
[INFO] Reactor Summary:
[INFO]
[INFO] devstudio - Product, Installers .................... SUCCESS [ 26.024 s]
[INFO] devstudio - Product Plugins - Core ................. SUCCESS [ 0.024 s]
[INFO] com.jboss.devstudio.core ........................... SUCCESS [ 47.589 s]
[INFO] com.jboss.devstudio.core.project.examples .......... SUCCESS [ 2.586 s]
[INFO] com.jboss.devstudio.core.usage.branding ............ SUCCESS [ 2.696 s]
[INFO] com.jboss.devstudio.core.central ................... SUCCESS [ 4.061 s]
[INFO] com.jboss.devstudio.core.capabilities .............. SUCCESS [ 2.047 s]
[INFO] devstudio - Product Features - Core ................ SUCCESS [ 0.019 s]
[INFO] com.jboss.devstudio.core.feature ................... SUCCESS [ 1.441 s]
[INFO] com.jboss.devstudio.core.feature.source ............ SUCCESS [ 0.904 s]
[INFO] com.jboss.devstudio.core.capabilities.feature ...... SUCCESS [ 1.142 s]
[INFO] com.jboss.devstudio.core.capabilities.feature.source SUCCESS [ 1.058 s]
[INFO] com.jboss.devstudio.core.site ...................... SUCCESS [17:13 min]
[INFO] p2-director ........................................ SUCCESS [ 0.216 s]
[INFO] com.jboss.devstudio.core.p2.director ............... SUCCESS [ 1.242 s]
[INFO] p2-director ........................................ SUCCESS [ 22.099 s]
[INFO] installer .......................................... SUCCESS [09:31 min]
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 56:37 min
[INFO] Finished at: 2016-08-19T15:45:33-04:00
[INFO] Final Memory: 155M/414M
[INFO] ------------------------------------------------------------------------{code}
This includes a 228M devstudio-10.1.0.GA-src.zip file in C:\WORK\jbdevstudio-product\site\target as expected.
If you then cd into the results folder and run a build in that folder, you get devstudio-10.1.0.GA-v20160819-1917-src.zip:
{code}
cd results
mvn clean verify -DBUILD_ALIAS=GA
[INFO] Total time: 04:45 min
{code}
!src-zip-created.png!
> Local jbdevstudio-product build always fails to download sources
> ----------------------------------------------------------------
>
> Key: JBDS-3994
> URL: https://issues.jboss.org/browse/JBDS-3994
> Project: Red Hat JBoss Developer Studio (devstudio)
> Issue Type: Enhancement
> Components: build
> Affects Versions: 10.1.0.AM3
> Environment: 1. No maven local repository;
> 2. latest master;
> 3. mvn clean install;
> 4. Windows 10 Home.
> Reporter: Denis Golovin
> Assignee: Nick Boldt
> Fix For: 10.x
>
> Attachments: src-zip-created.png, windows10-version-info.png
>
>
> {code}[INFO] --- repository-utils:0.25.1-SNAPSHOT:generate-repository-facade (generate-facade) @ com.jboss.devstudio.core.site ---
> [WARNING] No C:\p\rh\jbds-releng\jbdevstudio-product\site\target\repository\web/site.css found; using default.
> [INFO] Building zip: C:\p\rh\jbds-releng\jbdevstudio-product\site\target\com.jboss.devstudio.core.site-10.1.0-SNAPSHOT.zip
> [INFO]
> [INFO] --- repository-utils:0.25.1-SNAPSHOT:fetch-sources-from-manifests (fetch-sources) @ com.jboss.devstudio.core.site ---
> [INFO] Downloaded: jbosstools-base_6ec1deba2610a94a14d160a7b54ae4f708c40044_sources.zip (23.6 M)
> [INFO] Downloaded: jbosstools-browsersim_019a66b4cef24d489c5bad2c0324477e32871222_sources.zip (3.2 M)
> [INFO] Downloaded: jbosstools-central_4cef5b7e1c70b213b372fcb5b7ba1c0834e5bff9_sources.zip (8.2 M)
> [INFO] Downloaded: jbosstools-forge_6beb7d3b3218e8b02d0497d38915574f9eaf8c1f_sources.zip (430.3 k)
> [INFO] Downloaded: jbosstools-freemarker_43ccb5369f1b9bdbd99466755af6158a3c39cea8_sources.zip (379.1 k)
> [INFO] Downloaded: jbosstools-hibernate_3e9fb83570c5c7c521f92d3f05c77b67355477d0_sources.zip (26.9 M)
> [INFO] Downloaded: jbosstools-javaee_a3e97d0495026b043ff151ac65412ba64bcfc1ff_sources.zip (46.2 M)
> [INFO] Downloaded: jbosstools-openshift_810571f6aff04eb4a4b0b986e9ad4c0f16796b25_sources.zip (1.8 M)
> [INFO] Downloaded: jbosstools-server_226292c9076be1a5e6f6779e6727fbc5d38af0be_sources.zip (34.6 M)
> [INFO] Downloaded: jbosstools-vpe_bd95b9c63a5b05bec19afe483f8224cf07c8aef8_sources.zip (3.5 M)
> [INFO] ------------------------------------------------------------------------
> [INFO] Reactor Summary:
> [INFO]
> [INFO] devstudio - Product, Installers .................... SUCCESS [ 0.708 s]
> [INFO] devstudio - Product Plugins - Core ................. SUCCESS [ 0.224 s]
> [INFO] com.jboss.devstudio.core ........................... SUCCESS [ 12.617 s]
> [INFO] com.jboss.devstudio.core.project.examples .......... SUCCESS [ 0.664 s]
> [INFO] com.jboss.devstudio.core.usage.branding ............ SUCCESS [ 0.823 s]
> [INFO] com.jboss.devstudio.core.central ................... SUCCESS [ 2.297 s]
> [INFO] com.jboss.devstudio.core.capabilities .............. SUCCESS [ 0.503 s]
> [INFO] devstudio - Product Features - Core ................ SUCCESS [ 0.073 s]
> [INFO] com.jboss.devstudio.core.feature ................... SUCCESS [ 1.305 s]
> [INFO] com.jboss.devstudio.core.feature.source ............ SUCCESS [ 1.219 s]
> [INFO] com.jboss.devstudio.core.capabilities.feature ...... SUCCESS [ 0.406 s]
> [INFO] com.jboss.devstudio.core.capabilities.feature.source SUCCESS [ 0.406 s]
> [INFO] com.jboss.devstudio.core.site ...................... FAILURE [04:26 min]
> [INFO] p2-director ........................................ SKIPPED
> [INFO] com.jboss.devstudio.core.p2.director ............... SKIPPED
> [INFO] p2-director ........................................ SKIPPED
> [INFO] installer .......................................... SKIPPED
> [INFO] ------------------------------------------------------------------------
> [INFO] BUILD FAILURE
> [INFO] ------------------------------------------------------------------------
> [INFO] Total time: 05:22 min
> [INFO] Finished at: 2016-08-10T19:36:46-07:00
> [INFO] Final Memory: 147M/1484M
> [INFO] ------------------------------------------------------------------------
> [ERROR] Failed to execute goal org.jboss.tools.tycho-plugins:repository-utils:0.25.1-SNAPSHOT:fetch-sources-from-manifests (fetch-sources) on project com.jboss.devstudio.core.site: Problem occurred checking upstream buildinfo.json files!
> [ERROR]
> [ERROR] C:\p\rh\jbds-releng\jbdevstudio-product\site\target\buildinfo\buildinfo_jbosstools-build-sites.json
> [ERROR] contains 91249e8dd7f99e9b517cccf99b201dc263efe11a, but upstream jbosstools-build-sites project's MANIFEST.MF has Eclipse-SourceReferences
> [ERROR] commitId 337bd38cb5eb530dd039ddbbaa311fb36161e726.
> [ERROR]
> [ERROR] If you have locally built projects which are being aggregated here, ensure
> [ERROR] they are built from the latest SHA from HEAD, not a local topic branch.
> [ERROR]
> [ERROR] It's also possible that some recent changes have not yet been built upstream.
> [ERROR] If that's the case, trigger a build for the jbosstools-build-sites project
> [ERROR] to ensure that the latest commits have been built and can be aggregated here.{code}
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
9 years, 7 months
[JBoss JIRA] (JBDS-3994) Local jbdevstudio-product build always fails to download sources
by Nick Boldt (JIRA)
[ https://issues.jboss.org/browse/JBDS-3994?page=com.atlassian.jira.plugin.... ]
Nick Boldt updated JBDS-3994:
-----------------------------
Attachment: windows10-version-info.png
Windows version details: [^windows10-version-info.png]
mvn/java version details:
{code}
C:\WORK\jbdevstudio-product\results\target\all>mvn -version
Apache Maven 3.3.9 (bb52d8502b132ec0a5a3f4c09453c07478323dc5; 2015-11-10T11:41:47-05:00)
Maven home: C:\apache-maven-3.3.9
Java version: 1.8.0_92, vendor: Oracle Corporation
Java home: C:\Program Files\Java\jdk1.8.0_92\jre
Default locale: en_CA, platform encoding: Cp1252
OS name: "windows 10", version: "10.0", arch: "amd64", family: "dos"{code}
> Local jbdevstudio-product build always fails to download sources
> ----------------------------------------------------------------
>
> Key: JBDS-3994
> URL: https://issues.jboss.org/browse/JBDS-3994
> Project: Red Hat JBoss Developer Studio (devstudio)
> Issue Type: Enhancement
> Components: build
> Affects Versions: 10.1.0.AM3
> Environment: 1. No maven local repository;
> 2. latest master;
> 3. mvn clean install;
> 4. Windows 10 Home.
> Reporter: Denis Golovin
> Assignee: Nick Boldt
> Fix For: 10.x
>
> Attachments: src-zip-created.png, windows10-version-info.png
>
>
> {code}[INFO] --- repository-utils:0.25.1-SNAPSHOT:generate-repository-facade (generate-facade) @ com.jboss.devstudio.core.site ---
> [WARNING] No C:\p\rh\jbds-releng\jbdevstudio-product\site\target\repository\web/site.css found; using default.
> [INFO] Building zip: C:\p\rh\jbds-releng\jbdevstudio-product\site\target\com.jboss.devstudio.core.site-10.1.0-SNAPSHOT.zip
> [INFO]
> [INFO] --- repository-utils:0.25.1-SNAPSHOT:fetch-sources-from-manifests (fetch-sources) @ com.jboss.devstudio.core.site ---
> [INFO] Downloaded: jbosstools-base_6ec1deba2610a94a14d160a7b54ae4f708c40044_sources.zip (23.6 M)
> [INFO] Downloaded: jbosstools-browsersim_019a66b4cef24d489c5bad2c0324477e32871222_sources.zip (3.2 M)
> [INFO] Downloaded: jbosstools-central_4cef5b7e1c70b213b372fcb5b7ba1c0834e5bff9_sources.zip (8.2 M)
> [INFO] Downloaded: jbosstools-forge_6beb7d3b3218e8b02d0497d38915574f9eaf8c1f_sources.zip (430.3 k)
> [INFO] Downloaded: jbosstools-freemarker_43ccb5369f1b9bdbd99466755af6158a3c39cea8_sources.zip (379.1 k)
> [INFO] Downloaded: jbosstools-hibernate_3e9fb83570c5c7c521f92d3f05c77b67355477d0_sources.zip (26.9 M)
> [INFO] Downloaded: jbosstools-javaee_a3e97d0495026b043ff151ac65412ba64bcfc1ff_sources.zip (46.2 M)
> [INFO] Downloaded: jbosstools-openshift_810571f6aff04eb4a4b0b986e9ad4c0f16796b25_sources.zip (1.8 M)
> [INFO] Downloaded: jbosstools-server_226292c9076be1a5e6f6779e6727fbc5d38af0be_sources.zip (34.6 M)
> [INFO] Downloaded: jbosstools-vpe_bd95b9c63a5b05bec19afe483f8224cf07c8aef8_sources.zip (3.5 M)
> [INFO] ------------------------------------------------------------------------
> [INFO] Reactor Summary:
> [INFO]
> [INFO] devstudio - Product, Installers .................... SUCCESS [ 0.708 s]
> [INFO] devstudio - Product Plugins - Core ................. SUCCESS [ 0.224 s]
> [INFO] com.jboss.devstudio.core ........................... SUCCESS [ 12.617 s]
> [INFO] com.jboss.devstudio.core.project.examples .......... SUCCESS [ 0.664 s]
> [INFO] com.jboss.devstudio.core.usage.branding ............ SUCCESS [ 0.823 s]
> [INFO] com.jboss.devstudio.core.central ................... SUCCESS [ 2.297 s]
> [INFO] com.jboss.devstudio.core.capabilities .............. SUCCESS [ 0.503 s]
> [INFO] devstudio - Product Features - Core ................ SUCCESS [ 0.073 s]
> [INFO] com.jboss.devstudio.core.feature ................... SUCCESS [ 1.305 s]
> [INFO] com.jboss.devstudio.core.feature.source ............ SUCCESS [ 1.219 s]
> [INFO] com.jboss.devstudio.core.capabilities.feature ...... SUCCESS [ 0.406 s]
> [INFO] com.jboss.devstudio.core.capabilities.feature.source SUCCESS [ 0.406 s]
> [INFO] com.jboss.devstudio.core.site ...................... FAILURE [04:26 min]
> [INFO] p2-director ........................................ SKIPPED
> [INFO] com.jboss.devstudio.core.p2.director ............... SKIPPED
> [INFO] p2-director ........................................ SKIPPED
> [INFO] installer .......................................... SKIPPED
> [INFO] ------------------------------------------------------------------------
> [INFO] BUILD FAILURE
> [INFO] ------------------------------------------------------------------------
> [INFO] Total time: 05:22 min
> [INFO] Finished at: 2016-08-10T19:36:46-07:00
> [INFO] Final Memory: 147M/1484M
> [INFO] ------------------------------------------------------------------------
> [ERROR] Failed to execute goal org.jboss.tools.tycho-plugins:repository-utils:0.25.1-SNAPSHOT:fetch-sources-from-manifests (fetch-sources) on project com.jboss.devstudio.core.site: Problem occurred checking upstream buildinfo.json files!
> [ERROR]
> [ERROR] C:\p\rh\jbds-releng\jbdevstudio-product\site\target\buildinfo\buildinfo_jbosstools-build-sites.json
> [ERROR] contains 91249e8dd7f99e9b517cccf99b201dc263efe11a, but upstream jbosstools-build-sites project's MANIFEST.MF has Eclipse-SourceReferences
> [ERROR] commitId 337bd38cb5eb530dd039ddbbaa311fb36161e726.
> [ERROR]
> [ERROR] If you have locally built projects which are being aggregated here, ensure
> [ERROR] they are built from the latest SHA from HEAD, not a local topic branch.
> [ERROR]
> [ERROR] It's also possible that some recent changes have not yet been built upstream.
> [ERROR] If that's the case, trigger a build for the jbosstools-build-sites project
> [ERROR] to ensure that the latest commits have been built and can be aggregated here.{code}
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
9 years, 7 months
[JBoss JIRA] (JBDS-3994) Local jbdevstudio-product build always fails to download sources
by Nick Boldt (JIRA)
[ https://issues.jboss.org/browse/JBDS-3994?page=com.atlassian.jira.plugin.... ]
Nick Boldt updated JBDS-3994:
-----------------------------
Attachment: src-zip-created.png
With no c:\users\nickb\.m2\repository folder, I ran this build and ended up with 819M in c:\users\nickb\.m2\repository and a successful build on Windows 10.
{code}
mvn clean verify -DBUILD_ALIAS=GA
[INFO] Reactor Summary:
[INFO]
[INFO] devstudio - Product, Installers .................... SUCCESS [ 26.024 s]
[INFO] devstudio - Product Plugins - Core ................. SUCCESS [ 0.024 s]
[INFO] com.jboss.devstudio.core ........................... SUCCESS [ 47.589 s]
[INFO] com.jboss.devstudio.core.project.examples .......... SUCCESS [ 2.586 s]
[INFO] com.jboss.devstudio.core.usage.branding ............ SUCCESS [ 2.696 s]
[INFO] com.jboss.devstudio.core.central ................... SUCCESS [ 4.061 s]
[INFO] com.jboss.devstudio.core.capabilities .............. SUCCESS [ 2.047 s]
[INFO] devstudio - Product Features - Core ................ SUCCESS [ 0.019 s]
[INFO] com.jboss.devstudio.core.feature ................... SUCCESS [ 1.441 s]
[INFO] com.jboss.devstudio.core.feature.source ............ SUCCESS [ 0.904 s]
[INFO] com.jboss.devstudio.core.capabilities.feature ...... SUCCESS [ 1.142 s]
[INFO] com.jboss.devstudio.core.capabilities.feature.source SUCCESS [ 1.058 s]
[INFO] com.jboss.devstudio.core.site ...................... SUCCESS [17:13 min]
[INFO] p2-director ........................................ SUCCESS [ 0.216 s]
[INFO] com.jboss.devstudio.core.p2.director ............... SUCCESS [ 1.242 s]
[INFO] p2-director ........................................ SUCCESS [ 22.099 s]
[INFO] installer .......................................... SUCCESS [09:31 min]
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 56:37 min
[INFO] Finished at: 2016-08-19T15:45:33-04:00
[INFO] Final Memory: 155M/414M
[INFO] ------------------------------------------------------------------------{code}
This includes a 228M devstudio-10.1.0.GA-src.zip file in C:\WORK\jbdevstudio-product\site\target as expected.
If you then cd into the results folder and run a build in that folder, you get devstudio-10.1.0.GA-v20160819-1917-src.zip:
{code}
cd results
mvn clean verify -DBUILD_ALIAS=GA
[INFO] Total time: 04:45 min
{code}
!src-zip-created.png!
> Local jbdevstudio-product build always fails to download sources
> ----------------------------------------------------------------
>
> Key: JBDS-3994
> URL: https://issues.jboss.org/browse/JBDS-3994
> Project: Red Hat JBoss Developer Studio (devstudio)
> Issue Type: Enhancement
> Components: build
> Affects Versions: 10.1.0.AM3
> Environment: 1. No maven local repository;
> 2. latest master;
> 3. mvn clean install;
> 4. Windows 10 Home.
> Reporter: Denis Golovin
> Assignee: Nick Boldt
> Fix For: 10.x
>
> Attachments: src-zip-created.png
>
>
> {code}[INFO] --- repository-utils:0.25.1-SNAPSHOT:generate-repository-facade (generate-facade) @ com.jboss.devstudio.core.site ---
> [WARNING] No C:\p\rh\jbds-releng\jbdevstudio-product\site\target\repository\web/site.css found; using default.
> [INFO] Building zip: C:\p\rh\jbds-releng\jbdevstudio-product\site\target\com.jboss.devstudio.core.site-10.1.0-SNAPSHOT.zip
> [INFO]
> [INFO] --- repository-utils:0.25.1-SNAPSHOT:fetch-sources-from-manifests (fetch-sources) @ com.jboss.devstudio.core.site ---
> [INFO] Downloaded: jbosstools-base_6ec1deba2610a94a14d160a7b54ae4f708c40044_sources.zip (23.6 M)
> [INFO] Downloaded: jbosstools-browsersim_019a66b4cef24d489c5bad2c0324477e32871222_sources.zip (3.2 M)
> [INFO] Downloaded: jbosstools-central_4cef5b7e1c70b213b372fcb5b7ba1c0834e5bff9_sources.zip (8.2 M)
> [INFO] Downloaded: jbosstools-forge_6beb7d3b3218e8b02d0497d38915574f9eaf8c1f_sources.zip (430.3 k)
> [INFO] Downloaded: jbosstools-freemarker_43ccb5369f1b9bdbd99466755af6158a3c39cea8_sources.zip (379.1 k)
> [INFO] Downloaded: jbosstools-hibernate_3e9fb83570c5c7c521f92d3f05c77b67355477d0_sources.zip (26.9 M)
> [INFO] Downloaded: jbosstools-javaee_a3e97d0495026b043ff151ac65412ba64bcfc1ff_sources.zip (46.2 M)
> [INFO] Downloaded: jbosstools-openshift_810571f6aff04eb4a4b0b986e9ad4c0f16796b25_sources.zip (1.8 M)
> [INFO] Downloaded: jbosstools-server_226292c9076be1a5e6f6779e6727fbc5d38af0be_sources.zip (34.6 M)
> [INFO] Downloaded: jbosstools-vpe_bd95b9c63a5b05bec19afe483f8224cf07c8aef8_sources.zip (3.5 M)
> [INFO] ------------------------------------------------------------------------
> [INFO] Reactor Summary:
> [INFO]
> [INFO] devstudio - Product, Installers .................... SUCCESS [ 0.708 s]
> [INFO] devstudio - Product Plugins - Core ................. SUCCESS [ 0.224 s]
> [INFO] com.jboss.devstudio.core ........................... SUCCESS [ 12.617 s]
> [INFO] com.jboss.devstudio.core.project.examples .......... SUCCESS [ 0.664 s]
> [INFO] com.jboss.devstudio.core.usage.branding ............ SUCCESS [ 0.823 s]
> [INFO] com.jboss.devstudio.core.central ................... SUCCESS [ 2.297 s]
> [INFO] com.jboss.devstudio.core.capabilities .............. SUCCESS [ 0.503 s]
> [INFO] devstudio - Product Features - Core ................ SUCCESS [ 0.073 s]
> [INFO] com.jboss.devstudio.core.feature ................... SUCCESS [ 1.305 s]
> [INFO] com.jboss.devstudio.core.feature.source ............ SUCCESS [ 1.219 s]
> [INFO] com.jboss.devstudio.core.capabilities.feature ...... SUCCESS [ 0.406 s]
> [INFO] com.jboss.devstudio.core.capabilities.feature.source SUCCESS [ 0.406 s]
> [INFO] com.jboss.devstudio.core.site ...................... FAILURE [04:26 min]
> [INFO] p2-director ........................................ SKIPPED
> [INFO] com.jboss.devstudio.core.p2.director ............... SKIPPED
> [INFO] p2-director ........................................ SKIPPED
> [INFO] installer .......................................... SKIPPED
> [INFO] ------------------------------------------------------------------------
> [INFO] BUILD FAILURE
> [INFO] ------------------------------------------------------------------------
> [INFO] Total time: 05:22 min
> [INFO] Finished at: 2016-08-10T19:36:46-07:00
> [INFO] Final Memory: 147M/1484M
> [INFO] ------------------------------------------------------------------------
> [ERROR] Failed to execute goal org.jboss.tools.tycho-plugins:repository-utils:0.25.1-SNAPSHOT:fetch-sources-from-manifests (fetch-sources) on project com.jboss.devstudio.core.site: Problem occurred checking upstream buildinfo.json files!
> [ERROR]
> [ERROR] C:\p\rh\jbds-releng\jbdevstudio-product\site\target\buildinfo\buildinfo_jbosstools-build-sites.json
> [ERROR] contains 91249e8dd7f99e9b517cccf99b201dc263efe11a, but upstream jbosstools-build-sites project's MANIFEST.MF has Eclipse-SourceReferences
> [ERROR] commitId 337bd38cb5eb530dd039ddbbaa311fb36161e726.
> [ERROR]
> [ERROR] If you have locally built projects which are being aggregated here, ensure
> [ERROR] they are built from the latest SHA from HEAD, not a local topic branch.
> [ERROR]
> [ERROR] It's also possible that some recent changes have not yet been built upstream.
> [ERROR] If that's the case, trigger a build for the jbosstools-build-sites project
> [ERROR] to ensure that the latest commits have been built and can be aggregated here.{code}
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
9 years, 7 months
[JBoss JIRA] (JBIDE-22870) fetch-sources-from-manifests may reference a plugin whose SHA is older than another plugin in the repo
by Nick Boldt (JIRA)
[ https://issues.jboss.org/browse/JBIDE-22870?page=com.atlassian.jira.plugi... ]
Nick Boldt updated JBIDE-22870:
-------------------------------
Sprint: devex #119 August 2016
> fetch-sources-from-manifests may reference a plugin whose SHA is older than another plugin in the repo
> ------------------------------------------------------------------------------------------------------
>
> Key: JBIDE-22870
> URL: https://issues.jboss.org/browse/JBIDE-22870
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: build
> Affects Versions: 4.4.1.AM3
> Reporter: Nick Boldt
> Assignee: Nick Boldt
> Fix For: 4.4.x
>
>
> The fetch-sources-from-manifests mojo uses the Eclipse-SourceReferences entry in a given plugin's MANIFEST.MF to see which SHA should be used to to produce the source zip for that repo.
> For example, Forge uses the org.jboss.tools.forge.core plugin, which has its latest SHA = 6beb7d3b3218e8b02d0497d38915574f9eaf8c1f
> However, the latest commit in the master branch of jbosstools-forge is 3 commits later, daa126d38f8ff59c4244a6315dfc5c88b80abf5b.
> So, when the jboss tools aggregate fires, it sees a disconnect between the source SHA and the latest SHA in github, and the build is red:
> {code}
> [INFO] --- repository-utils:0.25.1-SNAPSHOT:fetch-sources-from-manifests (fetch-sources) @ org.jboss.tools.site.core ---
> [INFO] Downloaded: jbosstools-aerogear_0ac8df2dbdd2a7d4d8255cec88f845bf5f7700e6_sources.zip (494.9 k)
> [INFO] Downloaded: jbosstools-arquillian_96ac958b446e3655e8c8843e3de67b9e21c5294b_sources.zip (448.3 k)
> [INFO] Downloaded: jbosstools-base_6ec1deba2610a94a14d160a7b54ae4f708c40044_sources.zip (23.6 M)
> [INFO] Downloaded: jbosstools-browsersim_019a66b4cef24d489c5bad2c0324477e32871222_sources.zip (3.2 M)
> [INFO] Downloaded: jbosstools-central_1ed0291d1f76f6327ee046ea8962e3798861d25e_sources.zip (8.2 M)
> [INFO] Downloaded: jbosstools-forge_6beb7d3b3218e8b02d0497d38915574f9eaf8c1f_sources.zip (430.3 k)
> [INFO] Downloaded: jbosstools-freemarker_ad694bbeacc1be6ed7ea6511edfba9e7df6ba386_sources.zip (368.2 k)
> [INFO] Downloaded: jbosstools-hibernate_3e9fb83570c5c7c521f92d3f05c77b67355477d0_sources.zip (26.9 M)
> [INFO] Downloaded: jbosstools-javaee_a3e97d0495026b043ff151ac65412ba64bcfc1ff_sources.zip (46.2 M)
> [INFO] Downloaded: jbosstools-jst_4ddeac73b11f40e39bc3593231de500abde0396e_sources.zip (6.3 M)
> [INFO] Downloaded: jbosstools-livereload_8aacb494f4221b8022db63908e6f27a8b770714b_sources.zip (261.1 k)
> [INFO] Downloaded: jbosstools-openshift_810571f6aff04eb4a4b0b986e9ad4c0f16796b25_sources.zip (1.8 M)
> [INFO] Downloaded: jbosstools-portlet_4eec888e7045ab1413934670cbdcdf7a11447b52_sources.zip (1.2 M)
> [INFO] Downloaded: jbosstools-server_5de0eae6e90b3a58f63ec62432c050e61f5313ce_sources.zip (34.5 M)
> [INFO] Downloaded: jbosstools-vpe_bd95b9c63a5b05bec19afe483f8224cf07c8aef8_sources.zip (3.5 M)
> [INFO] Downloaded: jbosstools-webservices_c8cfc7db7c501ca0cc0290d6079c33ada7cd73c9_sources.zip (15.4 M)
> [INFO] Downloaded: jbosstools-xulrunner_2edce933f7d64efbb4d7a5b16be8dadae8de766e_sources.zip (46.5 M)
> [INFO] ------------------------------------------------------------------------
> [INFO] BUILD FAILURE
> [INFO] ------------------------------------------------------------------------
> [INFO] Total time: 05:44 min
> [INFO] Finished at: 2016-08-02T06:58:56-04:00
> [INFO] Final Memory: 139M/1923M
> [INFO] ------------------------------------------------------------------------
> [ERROR] Failed to execute goal org.jboss.tools.tycho-plugins:repository-utils:0.25.1-SNAPSHOT:fetch-sources-from-manifests (fetch-sources) on project org.jboss.tools.site.core: Problem occurred checking upstream buildinfo.json files!
> [ERROR] /mnt/hudson_workspace/workspace/jbosstools-build-sites.aggregate.site_master/sources/aggregate/site/target/buildinfo/buildinfo_jbosstools-forge.json
> [ERROR] contains daa126d38f8ff59c4244a6315dfc5c88b80abf5b, but upstream jbosstools-forge project's MANIFEST.MF has Eclipse-SourceReferences
> [ERROR] commitId 6beb7d3b3218e8b02d0497d38915574f9eaf8c1f.
> [ERROR] If you have locally built projects which are aggregated here,
> [ERROR] ensure they are built from the latest SHA from HEAD, not a local topic branch.
> [ERROR] Or, use -DskipCheckSHAs=true to bypass this check.
> {code}
> So, we could simply skip this check, but really, we need to determine WHICH SHA is the latest/correct one for the build... if we just pick one plugin, we might pick one that doesn't get updated very often and the build will break again.
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
9 years, 7 months