remove docker and add artifacts

This commit is contained in:
coco875
2024-01-24 16:52:59 -06:00
committed by Lywx
parent 6b98f3eb92
commit c98f14df51
4 changed files with 12 additions and 33 deletions
+6 -1
View File
@@ -16,4 +16,9 @@ jobs:
- name: Build
run: |
cmake -H. -Bbuild-cmake -GNinja -DCMAKE_BUILD_TYPE=Debug
cmake --build build-cmake -j
cmake --build build-cmake -j
- name: Publish packaged artifacts
uses: actions/upload-artifact@v4
with:
name: linux-x64
path: build-cmake/torch
+6 -1
View File
@@ -13,4 +13,9 @@ jobs:
- uses: actions/checkout@v4
- name: Build
run: |
cmake -S . -B "build/x64" -G "Visual Studio 16 2019" -T v142 -A x64 -DCMAKE_BUILD_TYPE=Debug
cmake -S . -B "build/x64" -G "Visual Studio 16 2019" -T v142 -A x64 -DCMAKE_BUILD_TYPE=Release
- name: Publish packaged artifacts
uses: actions/upload-artifact@v4
with:
name: windows
path: build/x64