generated from AlgebraicJulia/AlgebraicTemplate.jl
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f32f18b
commit b117d1c
Showing
1 changed file
with
4 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
@@ -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")' |