summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorcoco875 <pereira.jannin@gmail.com>2024-01-24 23:06:21 +0100
committerLywx <kiritodev01@gmail.com>2024-01-24 16:52:59 -0600
commit91e0e67daee475648b3ba4b15ff3934f99e6433c (patch)
tree1d0069d9c38fd7c5154c69a6863fece4e9516bca /.github/workflows
parent5a4d12f6da7a2012dfce99d967171062f203cc54 (diff)
update window version and change again the path
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/linux_build.yml2
-rw-r--r--.github/workflows/windows_build.yml4
2 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/linux_build.yml b/.github/workflows/linux_build.yml
index 629b7db..d532d06 100644
--- a/.github/workflows/linux_build.yml
+++ b/.github/workflows/linux_build.yml
@@ -21,7 +21,7 @@ jobs:
run: |
mkdir torch-release
mv build-cmake/torch torch-release/
- mv /usr/local/libbz2.so.1.0 torch-release/
+ cp /usr/local/lib/libbz2.so.1.0 torch-release/
- name: Publish packaged artifacts
uses: actions/upload-artifact@v4
with:
diff --git a/.github/workflows/windows_build.yml b/.github/workflows/windows_build.yml
index 361ffb2..8fe3b3c 100644
--- a/.github/workflows/windows_build.yml
+++ b/.github/workflows/windows_build.yml
@@ -8,12 +8,12 @@ on:
jobs:
build:
- runs-on: windows-2019
+ runs-on: windows-2022
steps:
- uses: actions/checkout@v4
- name: Build
run: |
- cmake -S . -B "build/x64" -G "Visual Studio 16 2019" -T v142 -A x64 -DCMAKE_BUILD_TYPE=Release
+ cmake -S . -B "build/x64" -G "Visual Studio 17 2022" -T v142 -A x64 -DCMAKE_BUILD_TYPE=Release
cmake --build .\build\x64
- name: Publish packaged artifacts
uses: actions/upload-artifact@v4