guitea build
Some checks failed
Build / Build - linux (push) Failing after 6m34s

This commit is contained in:
2025-12-10 22:43:19 +01:00
parent d9625c7fdd
commit cb4e12fe86
3 changed files with 4 additions and 5 deletions

View File

@@ -66,7 +66,7 @@ jobs:
cargo zigbuild --release --target ${{ matrix.target }}
else
# Define RUSTFLAGS to use the system linker (cc) and disable debug compression
RUSTFLAGS="-C linker=cc -C link-arg=-Wl,--compress-debug-sections=none" cargo build --release --target ${{ matrix.target }}
cargo build --release
fi
- name: Prepare artifact

0
docker/build-linux-image.sh Normal file → Executable file
View File

View File

@@ -1,4 +1,3 @@
# If using rust:alpine (NOT recommended for your current issue, but good to know)
FROM rust:alpine
RUN apk update && \
apk add nodejs npm
FROM rust:latest
RUN apt update && \
apt install nodejs npm -y