Skip to content

Instantly share code, notes, and snippets.

@gidden
Created April 18, 2014 15:19
Show Gist options
  • Save gidden/11049508 to your computer and use it in GitHub Desktop.
Save gidden/11049508 to your computer and use it in GitHub Desktop.
condor interactive submit
# This is a "normal" job.
universe = vanilla
# If any information about this submission is written
# as output to standard output or standard error,
# where should it be saved?
output = process.out
error = process.err
# Where to write a log of your jobs' statuses.
log = process.log
# All interactive jobs (compiling MatLab, R, Python, etc.)
# are pointed to our MatLab build machines
+IsMatlabBuildJob = true
requirements = (OpSysAndVer =?= "SL6") && IsMatlabBuildSlot
# Indicate if/when files should be transfered
should_transfer_files = YES
when_to_transfer_output = ON_EXIT
# Indicate your tarball of compiling sources here, to be transfered
# to the build machine when your interactive session starts.
# Make sure to create a different tarball of the files you want
# transfered back to the submit node when you're done compiling.
transfer_input_files = source.tar.gz
# We don't want email about our jobs. (If you do, let us know,
# there may be some additional configuration necessary.)
notification = never
queue
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment