1
0
mirror of https://github.com/fumiama/gozel.git synced 2026-06-05 00:10:24 +08:00
This commit is contained in:
源文雨
2026-03-27 22:58:18 +08:00
parent b0f89b37bd
commit 769aaadd37
2 changed files with 8 additions and 5 deletions

View File

@@ -55,12 +55,18 @@ jobs:
name: Linux
cmake_extra_args: -DCMAKE_INSTALL_PREFIX=/usr/local
build_args: --parallel 2
install_cmd: sudo cmake --install level-zero-build && sudo ldconfig
install_cmd: >-
sudo cmake --install level-zero-build &&
sudo cp level-zero-build/lib/libze_null.so /usr/local/lib/ &&
sudo ldconfig
- os: windows-latest
name: Windows
cmake_extra_args: ""
build_args: --parallel
install_cmd: 'for dll in $(find level-zero-build -name "*.dll"); do cp "$dll" /c/Windows/System32/; done'
install_cmd: >-
for dll in $(find level-zero-build -name "*.dll");
do cp "$dll" /c/Windows/System32/;
done
steps:
- uses: actions/checkout@v4

View File

@@ -1,8 +1,5 @@
version: "2"
run:
fix: true
formatters:
enable:
- gofmt