Skip to content

Commit

Permalink
CI: disable metal/amdgpu for now (#2004)
Browse files Browse the repository at this point in the history
  • Loading branch information
wsmoses authored Oct 22, 2024
1 parent b76585a commit db78d0a
Show file tree
Hide file tree
Showing 2 changed files with 59 additions and 795 deletions.
104 changes: 52 additions & 52 deletions .buildkite/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,55 +25,55 @@ steps:
env:
JULIA_PKG_SERVER_REGISTRY_PREFERENCE: eager

- label: "AMDGPU Julia v{{matrix.version}}"
matrix:
setup:
version:
- "1.10"
plugins:
- JuliaCI/julia#v1:
version: "{{matrix.version}}"
agents:
queue: "juliagpu"
rocm: "*"
if: build.message !~ /\[skip tests\]/
timeout_in_minutes: 60
commands: |
echo "--- Setup Julia packages"
julia --color=yes -e '
using Pkg
pkgs = [PackageSpec(; path) for path in (".", "lib/EnzymeCore", "lib/EnzymeTestUtils")]
push!(pkgs, PackageSpec(; name="AMDGPU"))
Pkg.develop(pkgs)' || exit 3
echo "+++ Run tests"
julia --color=yes test/amdgpu.jl
env:
JULIA_PKG_SERVER_REGISTRY_PREFERENCE: eager

- label: "Metal Julia v{{matrix.version}}"
matrix:
setup:
version:
- "1.10"
plugins:
- JuliaCI/julia#v1:
version: "{{matrix.version}}"
agents:
queue: "juliaecosystem"
os: "macos"
arch: "aarch64"
if: build.message !~ /\[skip tests\]/
timeout_in_minutes: 60
commands: |
echo "--- Setup Julia packages"
julia --color=yes -e '
using Pkg
pkgs = [PackageSpec(; path) for path in (".", "lib/EnzymeCore", "lib/EnzymeTestUtils")]
push!(pkgs, PackageSpec(; name="Metal"))
Pkg.develop(pkgs)' || exit 3
echo "+++ Run tests"
julia --color=yes test/metal.jl
env:
JULIA_PKG_SERVER_REGISTRY_PREFERENCE: eager
# - label: "AMDGPU Julia v{{matrix.version}}"
# matrix:
# setup:
# version:
# - "1.10"
# plugins:
# - JuliaCI/julia#v1:
# version: "{{matrix.version}}"
# agents:
# queue: "juliagpu"
# rocm: "*"
# if: build.message !~ /\[skip tests\]/
# timeout_in_minutes: 60
# commands: |
# echo "--- Setup Julia packages"
# julia --color=yes -e '
# using Pkg
# pkgs = [PackageSpec(; path) for path in (".", "lib/EnzymeCore", "lib/EnzymeTestUtils")]
# push!(pkgs, PackageSpec(; name="AMDGPU"))
# Pkg.develop(pkgs)' || exit 3
#
# echo "+++ Run tests"
# julia --color=yes test/amdgpu.jl
# env:
# JULIA_PKG_SERVER_REGISTRY_PREFERENCE: eager
#
# - label: "Metal Julia v{{matrix.version}}"
# matrix:
# setup:
# version:
# - "1.10"
# plugins:
# - JuliaCI/julia#v1:
# version: "{{matrix.version}}"
# agents:
# queue: "juliaecosystem"
# os: "macos"
# arch: "aarch64"
# if: build.message !~ /\[skip tests\]/
# timeout_in_minutes: 60
# commands: |
# echo "--- Setup Julia packages"
# julia --color=yes -e '
# using Pkg
# pkgs = [PackageSpec(; path) for path in (".", "lib/EnzymeCore", "lib/EnzymeTestUtils")]
# push!(pkgs, PackageSpec(; name="Metal"))
# Pkg.develop(pkgs)' || exit 3
#
# echo "+++ Run tests"
# julia --color=yes test/metal.jl
# env:
# JULIA_PKG_SERVER_REGISTRY_PREFERENCE: eager
Loading

0 comments on commit db78d0a

Please sign in to comment.