Skip to content

Commit 2c60550

Browse files
committed
ci: fix linking error
1 parent c0e526b commit 2c60550

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.fluentci/src/jobs.ts

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -349,6 +349,26 @@ export const build = async (src = ".") => {
349349
"libzstd-dev_1.4.8+dfsg-2.1_arm64.deb",
350350
"/build/sysroot/",
351351
])
352+
.withExec([
353+
"cp",
354+
"/build/sysroot/usr/lib/aarch64-linux-gnu/liblzma.so",
355+
"/build/sysroot/usr/lib/aarch64-linux-gnu/liblzma.so.5",
356+
])
357+
.withExec([
358+
"cp",
359+
"/build/sysroot/usr/lib/arm-linux-gnueabihf/liblzma.so",
360+
"/build/sysroot/usr/lib/arm-linux-gnueabihf/liblzma.so.5",
361+
])
362+
.withExec([
363+
"cp",
364+
"/build/sysroot/usr/lib/aarch64-linux-gnu/libgpg-error.so",
365+
"/build/sysroot/usr/lib/aarch64-linux-gnu/libgpg-error.so.0",
366+
])
367+
.withExec([
368+
"cp",
369+
"/build/sysroot/usr/lib/arm-linux-gnueabihf/libgpg-error.so",
370+
"/build/sysroot/usr/lib/arm-linux-gnueabihf/libgpg-error.so.0",
371+
])
352372
.withDirectory("/app", context, { exclude })
353373
.withDirectory("/app", context, { exclude })
354374
.withWorkdir("/app")

0 commit comments

Comments
 (0)