Skip to content

HPC-Rocket v0.6.0

Latest
Compare
Choose a tag to compare
@SvenMarcus SvenMarcus released this 27 Jul 12:28
· 2 commits to main since this release

Removes redundancy when specifying copy instructions for the slurm script.

Before:

copy:
  - from: myscript.sh
    to: remote/myscript.sh

sbatch: remote/myscript.sh

Now:

sbatch:
  script: remote/myscript.sh
  from: myscript.sh