File tree 1 file changed +20
-2
lines changed
1 file changed +20
-2
lines changed Original file line number Diff line number Diff line change 39
39
- name : Archive library
40
40
uses : actions/upload-artifact@v4
41
41
with :
42
- name : libgodot_llm.linux.release.x86_64.so
42
+ name : linux_cpu_release.zip
43
43
path : build/libgodot_llm.linux.release.x86_64.so
44
44
45
45
ubuntu-22-cmake-cpu-debug :
68
68
cmake .. -GNinja -DLLAMA_NATIVE=OFF -DLLAMA_VULKAN=OFF -DCMAKE_BUILD_TYPE=Debug
69
69
ninja -j $(nproc)
70
70
71
+ - name : Archive library
72
+ uses : actions/upload-artifact@v4
73
+ with :
74
+ name : linux_cpu_debug.zip
75
+ path : build/libgodot_llm.linux.debug.x86_64.so
76
+
71
77
ubuntu-22-cmake-vulkan-release :
72
78
runs-on : ubuntu-22.04
73
79
steps :
@@ -94,6 +100,12 @@ jobs:
94
100
cmake .. -GNinja -DLLAMA_NATIVE=OFF -DLLAMA_VULKAN=ON -DCMAKE_BUILD_TYPE=Release
95
101
ninja -j $(nproc)
96
102
103
+ - name : Archive library
104
+ uses : actions/upload-artifact@v4
105
+ with :
106
+ name : linux_vulkan_release.zip
107
+ path : build/libgodot_llm.linux.release.x86_64.so
108
+
97
109
ubuntu-22-cmake-vulkan-debug :
98
110
runs-on : ubuntu-22.04
99
111
steps :
@@ -118,4 +130,10 @@ jobs:
118
130
mkdir build
119
131
cd build
120
132
cmake .. -GNinja -DLLAMA_NATIVE=OFF -DLLAMA_VULKAN=ON -DCMAKE_BUILD_TYPE=Debug
121
- ninja -j $(nproc)
133
+ ninja -j $(nproc)
134
+
135
+ - name : Archive library
136
+ uses : actions/upload-artifact@v4
137
+ with :
138
+ name : linux_vulkan_debug.zip
139
+ path : build/libgodot_llm.linux.debug.x86_64.so
You can’t perform that action at this time.
0 commit comments