-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
15 changed files
with
49 additions
and
38 deletions.
There are no files selected for viewing
Binary file not shown.
Empty file.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# Cron job for weekly runs on the HiPerGator | ||
# This is currently running under ethanwhite's account on daemon2 | ||
# To recreate copy, paste, and modify this text into the editor resulting | ||
# from `crontab -e` | ||
# WEECOLOGYDEPLOYGITHUBPAT needs to be replaced with the appropriate GITHUB | ||
# Personal Access Token | ||
# cron jobs on HiPerGator run from a blank environment so we need to set both | ||
# basic environmental variables (HOME and PATH) and also the GitHub tokens | ||
# because they are not loaded into the cronjob environment | ||
|
||
HOME=/home/b.weinstein/ | ||
PATH=/opt/slurm/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/bin:/home/b.weinstein/bin | ||
[email protected] | ||
15 15 * * * sbatch ${HOME}/EvergladesWadingBird/Zooniverse/submit_job.sbatch >> ${HOME}/logs/cron.log 2>&1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
#test connect in sbatch | ||
#!/bin/bash | ||
#SBATCH --job-name=Everglades_rclone # Job name | ||
#SBATCH --mail-type=END # Mail events | ||
#SBATCH [email protected] # Where to send mail | ||
#SBATCH --account=ewhite | ||
#SBATCH --nodes=1 # Number of MPI ranks | ||
#SBATCH --cpus-per-task=1 | ||
#SBATCH --mem=10GB | ||
#SBATCH --time=72:00:00 #Time limit hrs:min:sec | ||
#SBATCH --output=/home/b.weinstein/logs/rclone_%j.out # Standard output and error log | ||
#SBATCH --error=/home/b.weinstein/logs/rclone_%j.err | ||
|
||
#comet debug | ||
|
||
#Sync data | ||
python tests/test_connect.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters