Skip to content

Commit

Permalink
build: upload artifacts for other linux build
Browse files Browse the repository at this point in the history
  • Loading branch information
Adriankhl committed May 28, 2024
1 parent fa5f841 commit dfb6a8f
Showing 1 changed file with 20 additions and 2 deletions.
22 changes: 20 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
- name: Archive library
uses: actions/upload-artifact@v4
with:
name: libgodot_llm.linux.release.x86_64.so
name: linux_cpu_release.zip
path: build/libgodot_llm.linux.release.x86_64.so

ubuntu-22-cmake-cpu-debug:
Expand Down Expand Up @@ -68,6 +68,12 @@ jobs:
cmake .. -GNinja -DLLAMA_NATIVE=OFF -DLLAMA_VULKAN=OFF -DCMAKE_BUILD_TYPE=Debug
ninja -j $(nproc)
- name: Archive library
uses: actions/upload-artifact@v4
with:
name: linux_cpu_debug.zip
path: build/libgodot_llm.linux.debug.x86_64.so

ubuntu-22-cmake-vulkan-release:
runs-on: ubuntu-22.04
steps:
Expand All @@ -94,6 +100,12 @@ jobs:
cmake .. -GNinja -DLLAMA_NATIVE=OFF -DLLAMA_VULKAN=ON -DCMAKE_BUILD_TYPE=Release
ninja -j $(nproc)
- name: Archive library
uses: actions/upload-artifact@v4
with:
name: linux_vulkan_release.zip
path: build/libgodot_llm.linux.release.x86_64.so

ubuntu-22-cmake-vulkan-debug:
runs-on: ubuntu-22.04
steps:
Expand All @@ -118,4 +130,10 @@ jobs:
mkdir build
cd build
cmake .. -GNinja -DLLAMA_NATIVE=OFF -DLLAMA_VULKAN=ON -DCMAKE_BUILD_TYPE=Debug
ninja -j $(nproc)
ninja -j $(nproc)
- name: Archive library
uses: actions/upload-artifact@v4
with:
name: linux_vulkan_debug.zip
path: build/libgodot_llm.linux.debug.x86_64.so

0 comments on commit dfb6a8f

Please sign in to comment.