From aef97b56ba2d2bac76b5e697e79352e2da497521 Mon Sep 17 00:00:00 2001 From: Zhang Date: Mon, 29 Jan 2024 22:26:42 +0800 Subject: [PATCH] fix install cmd --- .github/workflows/build.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 7af202a17..5407f174a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -46,7 +46,8 @@ jobs: - name: Build id: cmake_build run: | - "C:\Program Files (x86)\Intel\oneAPI\setvars.bat" intel64 + call "C:\Program Files (x86)\Intel\oneAPI\setvars.bat" intel64 + icx --version mkdir build cd build cmake -G "MinGW Makefiles" .. -DLLAMA_SYCL=ON -DCMAKE_C_COMPILER=icx -DCMAKE_CXX_COMPILER=icx -DCMAKE_BUILD_TYPE=Release