Skip to content

Commit c21b46d

Browse files
committed
Maybe, just maybe, it will work this time
1 parent 93dab7b commit c21b46d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/builds.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ jobs:
151151
- name: Upload Artifact
152152
uses: actions/upload-artifact@v4
153153
with:
154-
name: kuzugd
154+
name: kuzugd-${{ matrix.target.platform }}-${{ matrix.target.arch }}-${{ matrix.float-precision }}-${{ matrix.target-type }}
155155
path: |
156156
${{ github.workspace }}/bin/**
157157

SConstruct

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,14 +87,14 @@ if(env["platform"] == 'windows'):
8787

8888
elif (env["platform"] == 'linux'):
8989
env.Append(LIBPATH=["bin/linux/kuzu"])
90-
arch = platform.machine()
90+
arch = env["arch"]
9191

9292
kuzu_generic_name = f'libkuzu_{arch}.so'
9393

9494
if arch == "x86_64":
9595
env.Append(LIBS=["libkuzu_x86_64"])
9696
kuzu_lib_name = "libkuzu_x86_64.so"
97-
elif arch == "aarch64":
97+
if arch == "aarch64":
9898
env.Append(LIBS=["libkuzu_aarch64"])
9999
kuzu_lib_name = "libkuzu_aarch64.so"
100100

0 commit comments

Comments
 (0)