Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 11 additions & 8 deletions .buildkite/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
# below to your pipeline. More documentation to come.
steps:

# load the
- label: ":arrow_down: Load AlgebraicJulia pipeline"
command: |
if [ -f ".buildkite/example.yml.bak" ]; then
Expand All @@ -11,14 +12,16 @@ steps:
curl -s https://raw.githubusercontent.com/AlgebraicJulia/.github/main/buildkite/pipeline.yml | buildkite-agent pipeline upload
fi

- wait

- label: ":racehorse: Build docs and run tests on A100 GPU partition"
command:
- "srun --cpus-per-task=16 --mem=16G --gres=gpu:a100:1 --time=1:00:00 -p gpu --output=.buildkite/log_gpu_a100_%j.log --unbuffered .buildkite/jobscript.sh"

- label: ":racehorse: Build docs and run tests on Quadro GPU partition"
- label: ":racehorse: Build docs and run tests on {{matrix.name}} partition"
command:
- "srun --cpus-per-task=16 --mem=16G --gres=gpu:geforce:1 --time=1:00:00 -p gpu --output=.buildkite/log_gpu_quadro_%j.log --unbuffered .buildkite/jobscript.sh"
- "srun --cpus-per-task=16 --mem=16G --gres=gpu:{{matrix.gpu}} --time=1:00:00 -p gpu --output=.buildkite/gpu_{{matrix.gpu}}_%j.log --unbuffered .buildkite/jobscript.sh"
matrix:
adjustments:
- with:
name: "A100 GPU"
gpu: "a100"
- with:
name: "Quadro"
gpu: "geforce"

- wait
Loading