2024-04-21 13:24:39 +02:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
#SBATCH --time=00:10:00
|
|
|
|
#SBATCH --partition=cpu
|
2024-04-21 13:31:42 +02:00
|
|
|
#SBATCH --output=./output/output_build.txt
|
|
|
|
#SBATCH --error=./output/error_build.txt
|
2024-04-21 13:41:25 +02:00
|
|
|
#SBATCH --nodelist=oc-compute02
|
2024-04-21 14:54:11 +02:00
|
|
|
#SBATCH --mem=4G
|
|
|
|
#SBATCH -c16
|
2024-04-21 14:23:11 +02:00
|
|
|
srun nix develop --command stack --no-nix --system-ghc --no-install-ghc build
|