Skip to content

Commit

Permalink
Update jobscript.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
jpfairbanks authored Dec 20, 2023
1 parent f32f18b commit b117d1c
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions jobscript.sh
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
#!/bin/bash
#SBATCH --job-name=daemon_job_test # Job name
#SBATCH --job-name=diagrammatic_equations_CI # Job name
#SBATCH --mail-type=END,FAIL # Mail events (NONE, BEGIN, END, FAIL, ALL)
#SBATCH [email protected] # Where to send mail
#SBATCH --ntasks=1 # Run on a single CPU
#SBATCH --mem=8gb # Job memory request
#SBATCH --time=00:05:00 # Time limit hrs:min:sec
#SBATCH --output=daemon_test_%j.log # Standard output and error log
#SBATCH --time=00:15:00 # Time limit hrs:min:sec
pwd; hostname; date

module load julia
Expand All @@ -15,7 +14,7 @@ echo "Installing Packages..."
julia --project=docs/ -e 'using Pkg; Pkg.status()'

echo "Running Tests..."
julia --project -e 'using Pkg; Pkg.status; Pkg.test()'
julia --project -e 'using Pkg; Pkg.status(); Pkg.test()'

echo "Building Documentation..."
julia --project=docs/ -e 'using Pkg; Pkg.instantiate(); include("docs/make.jl")'
julia --project=docs/ -e 'using Pkg; Pkg.status(); include("docs/make.jl")'

0 comments on commit b117d1c

Please sign in to comment.