Skip to content

Commit

Permalink
Add buidkite pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
luraess committed Aug 8, 2023
1 parent fbe315b commit 7a53413
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions .buildkite/pipeline.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
- group: "CUDA"
key: "cuda"
steps:
- label: "Tests -- Julia latest"
plugins:
- JuliaCI/julia#v1:
version: "1"
persist_depot_dirs: packages, artifacts, compiled
agents:
queue: "juliagpu"
cuda: "11.0"
if: build.message !~ /\[skip tests\]/
timeout_in_minutes: 60
env:
JULIA_CUDA_MEMORY_POOL: "none"
commands: |
echo "+++ Run tests"
julia --color=yes --project=. -e '
import Pkg
Pkg.test("FastIce")
'
- group: "ROCm"
key: "rocm"
steps:
- label: "Tests -- Julia latest"
plugins:
- JuliaCI/julia#v1:
version: "1"
persist_depot_dirs: packages, artifacts, compiled
agents:
queue: "juliagpu"
rocm: "*" # todo fix ROCM version
if: build.message !~ /\[skip tests\]/
timeout_in_minutes: 60
soft_fail:
- exit_status: 1
commands: |
echo "+++ Run tests"
julia --color=yes --project=. -e '
import Pkg
Pkg.test("FastIce")
'

0 comments on commit 7a53413

Please sign in to comment.