From 32d75dc15d2db00fec8d1a9a06e17b1ce67d278a 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: Fri, 27 Mar 2026 22:41:07 +0800 Subject: [PATCH] fix: ci --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9357834..2cb5575 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -48,7 +48,7 @@ jobs: version: v2.11 test-examples: - name: Test examples + name: Test examples (${{ matrix.name }}) runs-on: ${{ matrix.os }} needs: [vet_build_test] strategy: @@ -56,9 +56,11 @@ jobs: matrix: include: - os: ubuntu-latest + name: Linux cmake_extra_args: -DCMAKE_INSTALL_PREFIX=/usr/local install_cmd: sudo cmake --install level-zero-build && sudo ldconfig - os: windows-latest + name: Windows cmake_extra_args: "" install_cmd: 'for dll in $(find level-zero-build -name "*.dll"); do cp "$dll" /c/Windows/System32/; done' steps: