refactor: srmd #12
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI-Windows-x64-MSVC | |
on: | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- README.md | |
- LICENSE | |
pull_request: | |
paths-ignore: | |
- README.md | |
- LICENSE | |
workflow_dispatch: | |
jobs: | |
windows: | |
strategy: | |
matrix: | |
python-version: ["3.8", "3.9", "3.10", "3.11"] | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- uses: pdm-project/setup-pdm@v3 | |
name: Setup PDM | |
with: | |
python-version: ${{ matrix.python-version }} | |
architecture: x64 | |
version: 2.11.1 | |
prerelease: false | |
enable-pep582: false | |
allow-python-prereleases: false | |
update-python: true | |
- name: Check Python version | |
run: | | |
python --version | |
- name: cache-vulkansdk | |
id: cache-vulkansdk | |
uses: actions/cache@v3 | |
with: | |
path: "VulkanSDK" | |
key: VulkanSDK-1.2.162.1-Installer | |
- name: vulkansdk | |
if: steps.cache-vulkansdk.outputs.cache-hit != 'true' | |
run: | | |
Invoke-WebRequest -Uri https://github.com/Tohrusky/realcugan-ncnn-vulkan-build-macOS/releases/download/v0.0.1/VulkanSDK-1.2.162.1-Installer.exe -OutFile VulkanSDK-1.2.162.1-Installer.exe | |
7z x -aoa ./VulkanSDK-1.2.162.1-Installer.exe -oVulkanSDK | |
Remove-Item .\VulkanSDK\Demos, .\VulkanSDK\Samples, .\VulkanSDK\Third-Party, .\VulkanSDK\Tools, .\VulkanSDK\Tools32, .\VulkanSDK\Bin32, .\VulkanSDK\Lib32 -Recurse | |
- name: Build | |
run: | | |
$env:VULKAN_SDK="$(pwd)\VulkanSDK" | |
$env:CMAKE_FLAGS="-DPY_VERSION=${{ matrix.python-version }}" | |
cd src | |
mkdir build && cd build | |
cmake -A x64 -DCMAKE_CXX_FLAGS="-frtti -fexceptions" .. | |
cmake --build . --config Release -j 4 | |
- name: dist | |
run: | | |
mkdir dist | |
echo F | xcopy .\src\build\Release\waifu2x_ncnn_vulkan_wrapper.*.pyd .\src\srmd_ncnn_py | |
echo F | xcopy .\tests\vulkan-1.dll .\src\srmd_ncnn_py | |
echo D | xcopy .\src\srmd_ncnn_py dist | |
- name: upload | |
uses: actions/upload-artifact@v3 | |
with: | |
name: srmd-ncnn-windows-python${{ matrix.python-version }} | |
path: dist |