From d8d5c95e659b56141ae57eed0d28a049ab7fcceb Mon Sep 17 00:00:00 2001 From: Matt Date: Mon, 1 Jul 2024 12:34:39 -0400 Subject: [PATCH] adding buildkite functionality --- .buildkite/jobscript.sh | 11 +++++++++++ .buildkite/pipeline.yml | 24 ++++++++++++++++++++++++ 2 files changed, 35 insertions(+) create mode 100755 .buildkite/jobscript.sh create mode 100644 .buildkite/pipeline.yml diff --git a/.buildkite/jobscript.sh b/.buildkite/jobscript.sh new file mode 100755 index 0000000..ebf5502 --- /dev/null +++ b/.buildkite/jobscript.sh @@ -0,0 +1,11 @@ +#!/bin/bash + +pwd; hostname; date + +module load julia + +echo "Running Tests..." +julia --project -t 16 -e 'using Pkg; Pkg.status(); Pkg.test()' + +echo "Building Documentation..." +julia --project=docs -t 16 -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.status(); Pkg.instantiate(); include("docs/make.jl")' diff --git a/.buildkite/pipeline.yml b/.buildkite/pipeline.yml new file mode 100644 index 0000000..962541a --- /dev/null +++ b/.buildkite/pipeline.yml @@ -0,0 +1,24 @@ +env: + JULIA_VERSION: "1.10.2" + GATAS_HOME: "~/.gatas/buildkite/agents/$BUILDKITE_AGENT_NAME" + +steps: + + - label: ":hammer: Build Project" + env: + JULIA_DEPOT_PATH: "$GATAS_HOME" + command: + - "module load julia" + - "julia --project=docs --color=yes -e 'using Pkg; Pkg.update(); Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate(); Pkg.precompile()'" + + - wait + + - label: ":scroll: Build docs and run tests" + env: + JULIA_DEPOT_PATH: "$GATAS_HOME" + JULIA_PROJECT: "docs/" + command: + - "srun --cpus-per-task=16 --mem=64G --time=1:00:00 --output=.buildkite/log_%j.log --unbuffered .buildkite/jobscript.sh" + + - wait +