Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "DSDP/MTJ/Releng/Scheduling Builds"

< DSDP‎ | MTJ‎ | Releng
(mtj_cron_nightly.sh)
(Crontab entry)
Line 32: Line 32:
  
 
== Crontab entry ==
 
== Crontab entry ==
{{codeblock|<nowiki> 0 5 * * 2,5 /opt/public/dsdp/mtj/mtj_cron_nightly.sh > /opt/public/dsdp/mtj/mtj_cron_nightly.log
+
{{codeblock|<nowiki> 0 8 * * 2,5 /opt/public/dsdp/mtj/mtj_cron_nightly_1.0.sh > /opt/public/dsdp/mtj/mtj_cron_nightly.log
 
</nowiki>}}
 
</nowiki>}}
  
  
 
[[Category:DSDP]] [[Category:MTJ]] [[Category:Releng]]
 
[[Category:DSDP]] [[Category:MTJ]] [[Category:Releng]]

Revision as of 07:20, 10 February 2009

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.0.sh > /opt/public/dsdp/mtj/mtj_cron_nightly.log

Back to the top