File tree Expand file tree Collapse file tree
sites/eclipse-platform-repository Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -279,25 +279,13 @@ pipeline {
279279 # Gather sdk product
280280 for file in ${PRODUCTS_DIR}/eclipse-sdk/target/products/*; do
281281 if [[ "$file" =~ /org.eclipse.sdk.ide-([^.]+).([^.]+).([^.]+).(.*)$ ]]; then
282- if [[ "${BASH_REMATCH[1]}" == "${BASH_REMATCH[2]}" ]]; then
283- #TODO: Remove this special treatment
284- osWsArch=${BASH_REMATCH[1]}-${BASH_REMATCH[3]}
285- else
286- osWsArch=${BASH_REMATCH[1]}-${BASH_REMATCH[2]}-${BASH_REMATCH[3]}
287- fi
288- cp ${file} ${DROP_DIR}/${BUILD_ID}/eclipse-SDK-$BUILD_ID-${osWsArch}.${BASH_REMATCH[4]}
282+ cp ${file} ${DROP_DIR}/${BUILD_ID}/eclipse-SDK-$BUILD_ID-${BASH_REMATCH[1]}-${BASH_REMATCH[2]}-${BASH_REMATCH[3]}.${BASH_REMATCH[4]}
289283 fi
290284 done
291285 # Gather platform product
292286 for file in ${PRODUCTS_DIR}/eclipse-platform/target/products/*; do
293287 if [[ "$file" =~ /org.eclipse.platform.ide-([^.]+).([^.]+).([^.]+).(.*)$ ]]; then
294- if [[ "${BASH_REMATCH[1]}" == "${BASH_REMATCH[2]}" ]]; then
295- #TODO: Remove this special treatment
296- osWsArch=${BASH_REMATCH[1]}-${BASH_REMATCH[3]}
297- else
298- osWsArch=${BASH_REMATCH[1]}-${BASH_REMATCH[2]}-${BASH_REMATCH[3]}
299- fi
300- cp ${file} ${DROP_DIR}/${BUILD_ID}/eclipse-platform-$BUILD_ID-${osWsArch}.${BASH_REMATCH[4]}
288+ cp ${file} ${DROP_DIR}/${BUILD_ID}/eclipse-platform-$BUILD_ID-${BASH_REMATCH[1]}-${BASH_REMATCH[2]}-${BASH_REMATCH[3]}.${BASH_REMATCH[4]}
301289 fi
302290 done
303291
Original file line number Diff line number Diff line change 1- # Maven/Tycho pom model adjustments, see https://github.com/eclipse/tycho/wiki/Tycho-Pomless
1+ # Maven/Tycho pom model adjustments, see https://github.com/eclipse-tycho /tycho/wiki/Tycho-Pomless
22pom.model.property.product.id = org.eclipse.platform.ide
33pom.model.property.product.rootFolder = eclipse
44pom.model.property.product.rootFolder.macosx = Eclipse.app
Original file line number Diff line number Diff line change 1- # Maven/Tycho pom model adjustments, see https://github.com/eclipse/tycho/wiki/Tycho-Pomless
1+ # Maven/Tycho pom model adjustments, see https://github.com/eclipse-tycho /tycho/wiki/Tycho-Pomless
22pom.model.property.product.id = org.eclipse.sdk.ide
33pom.model.property.product.rootFolder = eclipse
44pom.model.property.product.rootFolder.macosx = Eclipse.app
Original file line number Diff line number Diff line change 1+ # Maven/Tycho pom model adjustments, see https://github.com/eclipse-tycho/tycho/wiki/Tycho-Pomless
2+ pom.model.property.product.id = org.eclipse.rt.osgistarterkit.product
3+ pom.model.property.product.rootFolder = rt
4+ pom.model.property.product.rootFolder.macosx = Rt.app
5+
6+ pom.model.property.eclipse.signing.skip = false
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1- # Maven/Tycho pom model adjustments, see https://github.com/eclipse/tycho/wiki/Tycho-Pomless
1+ # Maven/Tycho pom model adjustments, see https://github.com/eclipse-tycho /tycho/wiki/Tycho-Pomless
22pom.model.property.repository.name = Eclipse ${releaseVersion}
33pom.model.property.eclipse.signing.skip = false
You can’t perform that action at this time.
0 commit comments