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.
* Update jobscript.sh 1. eliminate unused modules 2. reordered steps of jobscript.sh 3. rename job * unbuffered srun to get logs in buildkite
- Loading branch information
1 parent
ba7061e
commit bed969a
Showing
2 changed files
with
9 additions
and
13 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
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,24 +1,20 @@ | ||
#!/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 gcc/12.2.0 openmpi/4.1.5 julia | ||
module load julia | ||
|
||
echo "Running docs build..." | ||
echo "Installing Packages..." | ||
|
||
julia --project=docs/ -e 'using Pkg; Pkg.status()' | ||
julia --project=docs/ -e 'using Pkg; Pkg.instantiate(); include("docs/make.jl")' | ||
# julia --project -e 'using Pkg; Pkg.status; Pkg.test()' > log_test.md | ||
# ./job.sh | ||
|
||
# mpiexec -np 1 julia --project -e test/runtests.jl | ||
|
||
date | ||
|
||
echo "Running Tests..." | ||
julia --project -e 'using Pkg; Pkg.status(); Pkg.test()' | ||
|
||
echo "Building Documentation..." | ||
julia --project=docs/ -e 'using Pkg; Pkg.status(); include("docs/make.jl")' |