Skip to content

Commit

Permalink
up
Browse files Browse the repository at this point in the history
  • Loading branch information
Tohrusky committed Apr 19, 2023
1 parent 8f99e2d commit c8a15b3
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/CI-Linux-x64-Clang.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ jobs:
pip install -r requirements.txt
cp src/realcugan_ncnn_vulkan.py test
cp src/build/realcugan_ncnn_vulkan_wrapper.*.so test
cp -r src/realcugan-ncnn-vulkan/models test
cp -r models test
cd test
ls
python -m pytest
Expand All @@ -79,7 +79,7 @@ jobs:
mkdir dist
cp src/build/realcugan_ncnn_vulkan_wrapper.*.so dist
cp src/realcugan_ncnn_vulkan.py dist
cp -r src/realcugan-ncnn-vulkan/models dist
cp -r models dist
- name: upload
uses: actions/upload-artifact@v3
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/CI-Linux-x64-GCC.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:
pip install -r requirements.txt
cp src/realcugan_ncnn_vulkan.py test
cp src/build/realcugan_ncnn_vulkan_wrapper.*.so test
cp -r src/realcugan-ncnn-vulkan/models test
cp -r models test
cd test
ls
python -m pytest
Expand All @@ -76,7 +76,7 @@ jobs:
mkdir dist
cp src/build/realcugan_ncnn_vulkan_wrapper.*.so dist
cp src/realcugan_ncnn_vulkan.py dist
cp -r src/realcugan-ncnn-vulkan/models dist
cp -r models dist
- name: upload
uses: actions/upload-artifact@v3
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/CI-MacOS-Universal-Clang.yml
Original file line number Diff line number Diff line change
Expand Up @@ -188,15 +188,15 @@ jobs:
pip install -r requirements.txt
cp src/realcugan_ncnn_vulkan.py test
cp dist/realcugan_ncnn_vulkan_wrapper.*.so test
cp -r src/realcugan-ncnn-vulkan/models test
cp -r models test
cd test
ls
python -m pytest
- name: Upload dist
run: |
cp src/realcugan_ncnn_vulkan.py dist
cp -r src/realcugan-ncnn-vulkan/models dist
cp -r models dist
- name: upload
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/CI-Windows-x64-MSVC.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ jobs:
cd ..
echo F | xcopy .\src\realcugan_ncnn_vulkan.py test
echo F | xcopy .\src\build\Release\realcugan_ncnn_vulkan_wrapper.*.pyd test
echo D | xcopy .\src\realcugan-ncnn-vulkan\models\*.* test\models /s /e
echo D | xcopy .\models\*.* test\models /s /e
cd test
ls
python -m pytest
Expand All @@ -82,7 +82,7 @@ jobs:
cd ..
echo F | xcopy .\src\realcugan_ncnn_vulkan.py dist
echo F | xcopy .\src\build\Release\realcugan_ncnn_vulkan_wrapper.*.pyd dist
echo D | xcopy .\src\realcugan-ncnn-vulkan\models\*.* dist\models /s /e
echo D | xcopy .\models\*.* dist\models /s /e
- name: upload
uses: actions/upload-artifact@v3
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/Release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ jobs:
pip install twine wheel setuptools
pip install -r requirements.txt
cp src/realcugan_ncnn_vulkan.py realcugan_ncnn_py
cp -r src/realcugan-ncnn-vulkan/models realcugan_ncnn_py
cp -r models realcugan_ncnn_py
python setup.py bdist_wheel
- name: upload
Expand Down Expand Up @@ -246,7 +246,7 @@ jobs:
cd ..
echo F | xcopy .\src\realcugan_ncnn_vulkan.py realcugan_ncnn_py
echo F | xcopy .\src\build\Release\realcugan_ncnn_vulkan_wrapper.*.pyd realcugan_ncnn_py
echo D | xcopy .\src\realcugan-ncnn-vulkan\models\*.* realcugan_ncnn_py\models /s /e
echo D | xcopy .\models\*.* realcugan_ncnn_py\models /s /e
python setup.py bdist_wheel
- name: upload
Expand Down Expand Up @@ -307,7 +307,7 @@ jobs:
pip install -r requirements.txt
cp src/realcugan_ncnn_vulkan.py realcugan_ncnn_py
cp src/build/realcugan_ncnn_vulkan_wrapper.*.so realcugan_ncnn_py
cp -r src/realcugan-ncnn-vulkan/models realcugan_ncnn_py
cp -r models realcugan_ncnn_py
python setup.py bdist_wheel
- name: upload
Expand Down

0 comments on commit c8a15b3

Please sign in to comment.