diff --git a/.buildkite/pipeline.yml b/.buildkite/pipeline.yml index e233295..2bddef6 100644 --- a/.buildkite/pipeline.yml +++ b/.buildkite/pipeline.yml @@ -1,12 +1,10 @@ env: JULIA_VERSION: "1.10.2" - GATAS_HOME: "~/.gatas/buildkite/agents/$BUILDKITE_AGENT_NAME" + JULIA_DEPOT_PATH: "$DEPOT" 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()'" @@ -15,7 +13,6 @@ steps: - 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/build_%j.log --unbuffered .buildkite/jobscript.sh" diff --git a/.github/workflows/julia_ci.yml b/.github/workflows/julia_ci.yml index 2f066ee..e672887 100644 --- a/.github/workflows/julia_ci.yml +++ b/.github/workflows/julia_ci.yml @@ -20,6 +20,11 @@ on: version: description: "Tag and release version:" required: false + docs: + description: "Whether or not to build and deploy Documenter.jl docs" + default: true + required: false + type: boolean permissions: actions: read