Conversation
…docs, and CI artifact uploads Co-authored-by: peterkir <250545+peterkir@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Review and validate p2 repository setup and configurations
Add mixed/headless products, multiple p2 categories, installation docs, and per-artifact CI uploads
Mar 2, 2026
Collaborator
|
@copilot check the validation build ... |
…l platform rootfiles Co-authored-by: peterkir <250545+peterkir@users.noreply.github.com>
Contributor
Author
The build was failing due to a broken Fixed in commit
|
…neration Co-authored-by: peterkir <250545+peterkir@users.noreply.github.com>
Copilot
AI
changed the title
Add mixed/headless products, multiple p2 categories, installation docs, and per-artifact CI uploads
fix: scope p2.inf chmod to Linux/macOS to unblock product archive generation
Mar 2, 2026
…ive listing Co-authored-by: peterkir <250545+peterkir@users.noreply.github.com>
Copilot
AI
changed the title
fix: scope p2.inf chmod to Linux/macOS to unblock product archive generation
Fix missing per-platform product archives in CI artifact uploads
Mar 2, 2026
Co-authored-by: peterkir <250545+peterkir@users.noreply.github.com>
Copilot
AI
changed the title
Fix missing per-platform product archives in CI artifact uploads
fix: resolve product archive generation failures caused by bad p2.inf chmod and spurious pom.xml execution
Mar 2, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Two separate issues prevented all product archives from being generated, causing all CI artifact upload steps to report "No files were found".
Root causes & fixes
1.
p2.infchmod failed on Linux/macOS (features/example.rcp.feature.touchpoint/p2.inf)The install touchpoint tried to
chmodbothscript.batandscript.shon every platform. Sincescript.batis only installed on Windows (via per-OSrootfilesinbuild.properties), theChmodActionthrew on Linux/macOS:Fix: Scope the install instruction to Unix platforms only and drop the
script.batchmod (Windows.batfiles don't need execute bits):2. Spurious
archive-productsexecution in rootpom.xmlA prior change added an
archive-productsexecution to thetycho-p2-director-pluginin the rootpom.xml. Because the root project (packaging: pom) has no.productfiles, Tycho failed immediately:Fix: Removed the
<executions>block. The rootpom.xmlentry fortycho-p2-director-pluginis configuration-only (product IDs, archive names, root folders); Tycho's pomless build automatically runsarchive-productsin thereleng/productssubmodule where the.productfiles live.🔒 GitHub Advanced Security automatically protects Copilot coding agent pull requests. You can protect all pull requests by enabling Advanced Security for your repositories. Learn more about Advanced Security.