From 7a7cf87a62f623418cf6a9792cfaeee1913b49fb Mon Sep 17 00:00:00 2001 From: Christian Guinard <28689358+christiangnrd@users.noreply.github.com> Date: Sun, 5 Oct 2025 10:35:40 -0300 Subject: [PATCH] CI: Build PoCL without hwloc --- .github/workflows/ci.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5cdcb557..59f6d703 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -42,7 +42,7 @@ jobs: - os: macOS-15 pocl: local - os: windows-2025 - pocl: local + pocl: local steps: - uses: actions/checkout@v4 - uses: julia-actions/install-juliaup@v2 @@ -83,14 +83,13 @@ jobs: julia --project=pocl --color=yes -e ' using LLVM_full_jll, SPIRV_Tools_jll, SPIRV_LLVM_Translator_jll, - OpenCL_jll, OpenCL_Headers_jll, - Hwloc_jll, CMake_jll + OpenCL_jll, OpenCL_Headers_jll, CMake_jll sourcedir = joinpath(@__DIR__, "pocl") builddir = joinpath(@__DIR__, "build") destdir = joinpath(@__DIR__, "target") prefix = [] - for jll in [SPIRV_Tools_jll, SPIRV_LLVM_Translator_jll, OpenCL_jll, - OpenCL_Headers_jll, Hwloc_jll] + for jll in [SPIRV_Tools_jll, SPIRV_LLVM_Translator_jll, + OpenCL_jll, OpenCL_Headers_jll] push!(prefix, jll.artifact_dir) end withenv("LD_LIBRARY_PATH" => joinpath(Sys.BINDIR, Base.PRIVATE_LIBDIR)) do