We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
by default workflow steps use --export=NONE this can be overridden in the sbatch_opts.
--export=NONE
sbatch_opts
with --export=NONE, all SLURM_* vars are still passed.
SLURM_*
note:
# in sh export ABC=10 export SLURM_ABC=20 # in sbatch #SBATCH --export=NONE echo $ABC # gives "" echo $SLURM_ABC # gives 20 # in sbatch #SBATCH --export=ALL echo $ABC # gives 10 echo $SLURM_ABC # gives 20 # in sbatch #SBATCH --export=ABC=30,SLURM_ABC=40 echo $ABC # gives 30 echo $SLURM_ABC # gives 20
takeaway: SLURM_* cannot be overridden by --export, must actually be exported in the user ENV
--export
The text was updated successfully, but these errors were encountered:
No branches or pull requests
by default workflow steps use
--export=NONE
this can be overridden in the
sbatch_opts
.with
--export=NONE
, allSLURM_*
vars are still passed.note:
takeaway:
SLURM_*
cannot be overridden by--export
, must actually be exported in the user ENVThe text was updated successfully, but these errors were encountered: