From 358679cba0e4eff7cfcf12af2842a88e7af04df0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=BA=90=E6=96=87=E9=9B=A8?= <41315874+fumiama@users.noreply.github.com> Date: Wed, 25 Mar 2026 23:51:31 +0800 Subject: [PATCH] fix: sycl path --- .github/workflows/ci.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index aa4212b..f3ba94f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -57,8 +57,9 @@ jobs: - name: Download SYCL Linux run: | - wget https://github.com/intel/llvm/releases/download/v6.3.0/sycl_linux.tar.gz - tar -xzf sycl_linux.tar.gz + wget -q https://github.com/intel/llvm/releases/download/v6.3.0/sycl_linux.tar.gz + mkdir -p sycl_linux + tar -xzf sycl_linux.tar.gz -C sycl_linux - name: Add SYCL bin to PATH run: |