Skip to content
Snippets Groups Projects
callback.txt 391 B
Newer Older
Benjamin Wingfield's avatar
Benjamin Wingfield committed

# run everything in "strict mode". error early, error often!
set -euxo pipefail

# set up reporting job status to INTERVENE backend

# dependencies for workflow-monitor (python3.10 & requests library)
module load python-data/3.10-23.07

# run the monitor in the background
python3 {workflow_monitor_path} &
Benjamin Wingfield's avatar
Benjamin Wingfield committed

# ------------------------------------------------------------------------------