diff options
| author | coco875 <pereira.jannin@gmail.com> | 2024-01-24 22:56:05 +0100 |
|---|---|---|
| committer | Lywx <kiritodev01@gmail.com> | 2024-01-24 16:52:59 -0600 |
| commit | 943f871516758950c01bebce3eb0e84755bf3c20 (patch) | |
| tree | d7f711f93d45370397185170b4d5d669e2051658 /.github/workflows/linux_build.yml | |
| parent | 6ad949e535f694e80038aede9189ac8b68c0ddba (diff) | |
fix windows problem and make linux more portable
Diffstat (limited to '.github/workflows/linux_build.yml')
| -rw-r--r-- | .github/workflows/linux_build.yml | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/.github/workflows/linux_build.yml b/.github/workflows/linux_build.yml index 8347de6..4f5678f 100644 --- a/.github/workflows/linux_build.yml +++ b/.github/workflows/linux_build.yml @@ -17,8 +17,13 @@ jobs: run: | cmake -H. -Bbuild-cmake -GNinja -DCMAKE_BUILD_TYPE=Release cmake --build build-cmake -j + - name: Create Package + run: | + mkdir torch-release + mv build-cmake/torch torch-release/ + mv /lib/libbz2.so.1.0 torch-release/ - name: Publish packaged artifacts uses: actions/upload-artifact@v4 with: name: linux-x64 - path: build-cmake/torch*
\ No newline at end of file + path: build-cmake/torch
\ No newline at end of file |
