216
216
fi
217
217
218
218
# Setup the emoflon headless (special snowflake because of the zipped update site)
219
- setup_emoflon_headless_local_updatesite
219
+ # setup_emoflon_headless_local_updatesite
220
220
221
221
# Extract new Eclipse
222
222
log " Clean-up Eclipse folder and extract downloaded archive."
@@ -232,51 +232,51 @@ elif [[ "$OS" = "macos" ]]; then
232
232
fi
233
233
234
234
# Install global Eclipse settings from config file
235
- install_global_eclipse_settings
236
-
237
- log " Install Eclipse plug-ins."
238
- for p in ${ORDER[@]} ; do
239
- # Check if eMoflon packages must be skipped (for dev builds).
240
- if [[ " $p " = " emoflon" ]] && [[ $INSTALL_EMOFLON -eq 0 ]]; then
241
- log " Skipping plug-in: $p ."
242
- continue
243
- fi
235
+ # install_global_eclipse_settings
236
+
237
+ # log "Install Eclipse plug-ins."
238
+ # for p in ${ORDER[@]}; do
239
+ # # Check if eMoflon packages must be skipped (for dev builds).
240
+ # if [[ "$p" = "emoflon" ]] && [[ $INSTALL_EMOFLON -eq 0 ]]; then
241
+ # log "Skipping plug-in: $p."
242
+ # continue
243
+ # fi
244
244
245
- # Check if Dark Theme packages must be skipped (for CI builds = completely headless).
246
- if [[ " $p " = " theme" ]] && [[ $SKIP_THEME -eq 1 ]]; then
247
- log " Skipping plug-in: $p ."
248
- continue
249
- fi
250
-
251
- # Check if additional packages must be skipped (for CI builds).
252
- if [[ " $p " = " additional" ]] && [[ $SKIP_THEME -eq 1 ]]; then
253
- log " Skipping additional plug-ins."
254
- continue
255
- fi
256
-
257
- # Check if HiPE must be skipped (for hipe-dev builds).
258
- if [[ " $p " = " hipe" ]] && [[ $SKIP_HIPE -eq 1 ]]; then
259
- log " Skipping plug-in: $p ."
260
- continue
261
- fi
262
- log " Installing plug-in: $p ."
263
- install_packages " $UPDATESITES " " ./packages/$p -packages.list"
264
- done
245
+ # # Check if Dark Theme packages must be skipped (for CI builds = completely headless).
246
+ # if [[ "$p" = "theme" ]] && [[ $SKIP_THEME -eq 1 ]]; then
247
+ # log "Skipping plug-in: $p."
248
+ # continue
249
+ # fi
250
+
251
+ # # Check if additional packages must be skipped (for CI builds).
252
+ # if [[ "$p" = "additional" ]] && [[ $SKIP_THEME -eq 1 ]]; then
253
+ # log "Skipping additional plug-ins."
254
+ # continue
255
+ # fi
256
+
257
+ # # Check if HiPE must be skipped (for hipe-dev builds).
258
+ # if [[ "$p" = "hipe" ]] && [[ $SKIP_HIPE -eq 1 ]]; then
259
+ # log "Skipping plug-in: $p."
260
+ # continue
261
+ # fi
262
+ # log "Installing plug-in: $p."
263
+ # install_packages "$UPDATESITES" "./packages/$p-packages.list"
264
+ # done
265
265
266
266
# Install com.seeq.eclipse.importprojects (by hand because there is no public update site)
267
- install_eclipse_import_projects
267
+ # install_eclipse_import_projects
268
268
269
269
# Remove all configured update sites
270
- remove_update_sites
271
-
272
- # Deploy custom splash image
273
- if [[ $SKIP_THEME -eq 1 ]]; then
274
- # Skip UI customization for CI builds
275
- log " Skipping custom splash image."
276
- else
277
- log " Deploy custom splash image."
278
- chmod +x splash.sh && ./splash.sh deploy $VERSION $ECLIPSE_BASE_PATH
279
- fi
270
+ # remove_update_sites
271
+
272
+ # # Deploy custom splash image
273
+ # if [[ $SKIP_THEME -eq 1 ]]; then
274
+ # # Skip UI customization for CI builds
275
+ # log "Skipping custom splash image."
276
+ # else
277
+ # log "Deploy custom splash image."
278
+ # chmod +x splash.sh && ./splash.sh deploy $VERSION $ECLIPSE_BASE_PATH
279
+ # fi
280
280
281
281
log " Clean-up old archives and create new archive."
282
282
rm -f ./$OUTPUT_FILE
0 commit comments