Skip to content
Snippets Groups Projects
Commit 144243a0 authored by Christophe Geuzaine's avatar Christophe Geuzaine
Browse files

No commit message

No commit message
parent 976ff0a7
No related branches found
No related tags found
No related merge requests found
#
# this will launch a new build every night at 0h01
#
1 0 * * * cd ${HOME}/src/gmsh/utils/nightly && /usr/local/bin/ctest -S gmsh_mac_nightly.ctest -VV > ${HOME}/src/gmsh/nightly.log 2>&1
#!/bin/sh
# this is supposed to be called by launchd:
# * copy org.geuz.gmsh.nightly.plist to ~/Library/LauchAgents/
# * launchctl load ~/Library/LaunchAgents/org.geuz.gmsh.nightly.plist
cd ${HOME}/src/gmsh/utils/nightly && /usr/local/bin/ctest -S gmsh_mac_nightly.ctest -VV > ${HOME}/src/gmsh/nightly.log 2>&1
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Label</key>
<string>org.geuz.gmsh.nightly</string>
<key>ProgramArguments</key>
<array>
<string>/Users/geuzaine/src/gmsh/utils/nightly/gmsh_mac_nightly.sh</string>
</array>
<key>StartCalendarInterval</key>
<dict>
<key>Hour</key>
<integer>0</integer>
<key>Minute</key>
<integer>1</integer>
</dict>
<key>RunAtLoad</key>
<true/>
</dict>
</plist>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment