We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 739aa38 commit 0a6db6cCopy full SHA for 0a6db6c
.github/workflows/windows.yml
@@ -47,8 +47,6 @@ jobs:
47
mkdir build
48
cd build
49
cmake -DWITH_PIC=on -DCMAKE_BUILD_TYPE=Release ..
50
- echo %cd%
51
- dir
52
msbuild raylib.sln /target:raylib /property:Configuration=Release
53
copy raylib\Release\raylib.lib ..\..
54
cd ..\..
@@ -58,7 +56,10 @@ jobs:
58
56
python -m pip install --upgrade pip
59
57
pip3 install cffi
60
pip3 install wheel
61
- del raylib\dynamic\*.so* raylib\dynamic\*.dll raylib\dynamic\*.dylib raylib\dynamic\32bit\*
+ del raylib\dynamic\*.so* >nul 2>&1
+ del raylib\dynamic\*.dll >nul 2>&1
+ del raylib\dynamic\*.dylib >nul 2>&1
62
+ del raylib\dynamic\32bit\* >nul 2>&1
63
python setup.py bdist_wheel
64
65
- name: Upload build Artifact wheel
0 commit comments