File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -151,7 +151,7 @@ jobs:
151
151
- name : Upload Artifact
152
152
uses : actions/upload-artifact@v4
153
153
with :
154
- name : kuzugd
154
+ name : kuzugd-${{ matrix.target.platform }}-${{ matrix.target.arch }}-${{ matrix.float-precision }}-${{ matrix.target-type }}
155
155
path : |
156
156
${{ github.workspace }}/bin/**
157
157
Original file line number Diff line number Diff line change @@ -87,14 +87,14 @@ if(env["platform"] == 'windows'):
87
87
88
88
elif (env ["platform" ] == 'linux' ):
89
89
env .Append (LIBPATH = ["bin/linux/kuzu" ])
90
- arch = platform . machine ()
90
+ arch = env [ "arch" ]
91
91
92
92
kuzu_generic_name = f'libkuzu_{ arch } .so'
93
93
94
94
if arch == "x86_64" :
95
95
env .Append (LIBS = ["libkuzu_x86_64" ])
96
96
kuzu_lib_name = "libkuzu_x86_64.so"
97
- elif arch == "aarch64" :
97
+ if arch == "aarch64" :
98
98
env .Append (LIBS = ["libkuzu_aarch64" ])
99
99
kuzu_lib_name = "libkuzu_aarch64.so"
100
100
You can’t perform that action at this time.
0 commit comments