Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.
DSDP/MTJ/Releng/Scheduling Builds
Setting build tasks to be automatically run in the background at regular intervals by the cron daemon.
mtj_cron_nightly.sh
#!/bin/sh # ********************************************************************************************* # # All rights reserved. This program and the accompanying materials are made available # under the terms of the Eclipse Public License v1.0 which accompanies this distribution, # and is available at: http://www.eclipse.org/legal/epl-v10.html # # Contributors: # Motorola - initial version # ********************************************************************************************* # exporting the path export PATH=/bin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/bin:/usr/bin:/usr/X11R6/bin:/bin:/usr/games:/opt/gnome/bin:/opt/kde3/bin:/usr/lib/mit/bin:/usr/lib/mit/sbin cd /opt/public/dsdp/mtj/ /opt/public/dsdp/mtj/cleanup.sh /opt/public/dsdp/mtj/setup.sh europa /opt/public/dsdp/mtj/build_nightly.sh # Cleanup old nightly builds (leave only last 5 in place) cd /opt/public/dsdp/mtj/publish ls -d N-N200* | sort | head -n-5 | xargs rm -rf cd /opt/public/dsdp/mtj/
Crontab entry
0 8 * * 2,5 /opt/public/dsdp/mtj/mtj_cron_nightly_1.1.sh > /opt/public/dsdp/mtj/ mtj_cron_nightly_1.1.log |