diff options
| author | coco875 <pereira.jannin@gmail.com> | 2024-01-24 22:41:52 +0100 |
|---|---|---|
| committer | Lywx <kiritodev01@gmail.com> | 2024-01-24 16:52:59 -0600 |
| commit | 6ad949e535f694e80038aede9189ac8b68c0ddba (patch) | |
| tree | ccae613e9a2a19c20ce38efa75b3d3e1360bba40 /.github | |
| parent | c98f14df51e8409098a06d7bfa1d6952ef2397ed (diff) | |
add lib for linux
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/linux_build.yml | 4 | ||||
| -rw-r--r-- | .github/workflows/windows_build.yml | 1 |
2 files changed, 3 insertions, 2 deletions
diff --git a/.github/workflows/linux_build.yml b/.github/workflows/linux_build.yml index 13d1509..8347de6 100644 --- a/.github/workflows/linux_build.yml +++ b/.github/workflows/linux_build.yml @@ -15,10 +15,10 @@ jobs: run: sudo apt-get install cmake ninja-build libbz2-dev - name: Build run: | - cmake -H. -Bbuild-cmake -GNinja -DCMAKE_BUILD_TYPE=Debug + cmake -H. -Bbuild-cmake -GNinja -DCMAKE_BUILD_TYPE=Release cmake --build build-cmake -j - 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 diff --git a/.github/workflows/windows_build.yml b/.github/workflows/windows_build.yml index 43b32e8..0bf6acd 100644 --- a/.github/workflows/windows_build.yml +++ b/.github/workflows/windows_build.yml @@ -14,6 +14,7 @@ jobs: - name: Build run: | cmake -S . -B "build/x64" -G "Visual Studio 16 2019" -T v142 -A x64 -DCMAKE_BUILD_TYPE=Release + cmake --build build-cmake -j - name: Publish packaged artifacts uses: actions/upload-artifact@v4 with: |
