7 lines
193 B
Bash
7 lines
193 B
Bash
#!/usr/bin/env bash
|
|
#SBATCH --time=00:10:00
|
|
#SBATCH --partition=cpu
|
|
#SBATCH --output=./run/output_build.txt
|
|
#SBATCH --error=./run/error_build.txt
|
|
srun nix develop --command "stack --nix build"
|