CI
This commit is contained in:
parent
739aa38a18
commit
0a6db6ceaa
1 changed files with 4 additions and 3 deletions
7
.github/workflows/windows.yml
vendored
7
.github/workflows/windows.yml
vendored
|
@ -47,8 +47,6 @@ jobs:
|
||||||
mkdir build
|
mkdir build
|
||||||
cd build
|
cd build
|
||||||
cmake -DWITH_PIC=on -DCMAKE_BUILD_TYPE=Release ..
|
cmake -DWITH_PIC=on -DCMAKE_BUILD_TYPE=Release ..
|
||||||
echo %cd%
|
|
||||||
dir
|
|
||||||
msbuild raylib.sln /target:raylib /property:Configuration=Release
|
msbuild raylib.sln /target:raylib /property:Configuration=Release
|
||||||
copy raylib\Release\raylib.lib ..\..
|
copy raylib\Release\raylib.lib ..\..
|
||||||
cd ..\..
|
cd ..\..
|
||||||
|
@ -58,7 +56,10 @@ jobs:
|
||||||
python -m pip install --upgrade pip
|
python -m pip install --upgrade pip
|
||||||
pip3 install cffi
|
pip3 install cffi
|
||||||
pip3 install wheel
|
pip3 install wheel
|
||||||
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
|
||||||
|
del raylib\dynamic\32bit\* >nul 2>&1
|
||||||
python setup.py bdist_wheel
|
python setup.py bdist_wheel
|
||||||
|
|
||||||
- name: Upload build Artifact wheel
|
- name: Upload build Artifact wheel
|
||||||
|
|
Reference in a new issue