Skip to content

Commit

Permalink
add .buildkite
Browse files Browse the repository at this point in the history
  • Loading branch information
aelligp committed May 23, 2024
1 parent 372d5be commit dd407b9
Showing 1 changed file with 56 additions and 0 deletions.
56 changes: 56 additions & 0 deletions .buildkite/pipeline.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
steps:
- label: "CUDA Julia {{matrix.version}}"
matrix:
setup:
version:
- "1.9"
- "1.10"
plugins:
- JuliaCI/julia#v1:
version: "{{matrix.version}}"
- JuliaCI/julia-coverage#v1:
codecov: true
command: |
julia -e 'println("--- :julia: Instantiating project")
using Pkg
Pkg.develop(; path=pwd())' || exit 3
julia -e 'println("+++ :julia: Running tests")
using Pkg
Pkg.test("JustRelax"; test_args=["--backend=CUDA"], coverage=true)'
agents:
queue: "juliagpu"
cuda: "*"
timeout_in_minutes: 120
soft_fail:
- exit_status: 3

- label: "AMDGPU Julia {{matrix.version}}"
matrix:
setup:
version:
- "1.10"
plugins:
- JuliaCI/julia#v1:
version: "{{matrix.version}}"
- JuliaCI/julia-coverage#v1:
codecov: true
command: |
julia -e 'println("--- :julia: Instantiating project")
using Pkg
Pkg.develop(; path=pwd())' || exit 3
julia -e 'println("+++ :julia: Running tests")
using Pkg
Pkg.test("JustRelax"; test_args=["--backend=AMDGPU"], coverage=true)'
agents:
queue: "juliagpu"
rocm: "*"
rocmgpu: "*" #"gfx1101" # select Ludovic's Navi 3 card (ROCm 6.0)
timeout_in_minutes: 120
soft_fail:
- exit_status: 3
env:
JULIA_NUM_THREADS: 4
# env:
# SECRET_CODECOV_TOKEN: "yiehGQL2F9mR5iMEHZoExVcEq48DRegmiTYcGFPlFUrHoYLzWO+M1CwgVWdg6JNAk3mxUq+bX/lTeV/d5CvgYU6tGkfAZJXyO/u3AZeMnYSrBZFTdLftC7JGmsqIbMzbCpgNNwBs2OyoI0gzvsJ+hvqy1OKLYy+ycPC/WdY5ihMLk6Lb2GAZBEMOftE6twlV0G+dQvwTXUlxM87z+x4807jLXGBWvo/hISSt+7EJy6xPNZkkswdTvoGEh0FcAWW6XpmbgBtTIukJ2NLKXduJcszVP28WdYCNpDi2hx/so+o3txRFMPK2mLQcjnxLxe4cltLT4y5QEDaOD7uf6lCW7A==;U2FsdGVkX1+/Ozl2kXs4hTs2hFIaIUPx7mPw411N+q8="

0 comments on commit dd407b9

Please sign in to comment.