summaryrefslogtreecommitdiff
path: root/.github/workflows/linux_build.yml
diff options
context:
space:
mode:
authorcoco875 <pereira.jannin@gmail.com>2024-01-24 22:16:25 +0100
committerLywx <kiritodev01@gmail.com>2024-01-24 16:52:59 -0600
commitc98f14df51e8409098a06d7bfa1d6952ef2397ed (patch)
tree7b523e1f0bcb8868171e4070669183ce54509ae0 /.github/workflows/linux_build.yml
parent6b98f3eb9299eafa4ed28a869322d2c921f3dc4d (diff)
remove docker and add artifacts
Diffstat (limited to '.github/workflows/linux_build.yml')
-rw-r--r--.github/workflows/linux_build.yml7
1 files changed, 6 insertions, 1 deletions
diff --git a/.github/workflows/linux_build.yml b/.github/workflows/linux_build.yml
index f564c55..13d1509 100644
--- a/.github/workflows/linux_build.yml
+++ b/.github/workflows/linux_build.yml
@@ -16,4 +16,9 @@ jobs:
- name: Build
run: |
cmake -H. -Bbuild-cmake -GNinja -DCMAKE_BUILD_TYPE=Debug
- cmake --build build-cmake -j \ No newline at end of file
+ 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