Skip to content

Commit 0a6db6c

Browse files
CI
1 parent 739aa38 commit 0a6db6c

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/windows.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,6 @@ jobs:
4747
mkdir build
4848
cd build
4949
cmake -DWITH_PIC=on -DCMAKE_BUILD_TYPE=Release ..
50-
echo %cd%
51-
dir
5250
msbuild raylib.sln /target:raylib /property:Configuration=Release
5351
copy raylib\Release\raylib.lib ..\..
5452
cd ..\..
@@ -58,7 +56,10 @@ jobs:
5856
python -m pip install --upgrade pip
5957
pip3 install cffi
6058
pip3 install wheel
61-
del raylib\dynamic\*.so* raylib\dynamic\*.dll raylib\dynamic\*.dylib raylib\dynamic\32bit\*
59+
del raylib\dynamic\*.so* >nul 2>&1
60+
del raylib\dynamic\*.dll >nul 2>&1
61+
del raylib\dynamic\*.dylib >nul 2>&1
62+
del raylib\dynamic\32bit\* >nul 2>&1
6263
python setup.py bdist_wheel
6364
6465
- name: Upload build Artifact wheel

0 commit comments

Comments
 (0)