Testing workflow
Some checks failed
Multi-Platform Release Build / build (false, linux/arm64, native) (push) Successful in 4m58s
Multi-Platform Release Build / build (true, linux/amd64, x86_64-pc-windows-gnu) (push) Failing after 2m36s
Multi-Platform Release Build / build (true, linux/amd64, x86_64-unknown-linux-gnu) (push) Failing after 5m41s
Multi-Platform Release Build / create-release (push) Has been skipped

This commit is contained in:
Marco De Araujo 2026-01-01 17:47:56 -04:00
parent 99f143fcc2
commit 415032ecd1

View file

@ -69,7 +69,7 @@ jobs:
with: with:
args: > args: >
sh -c " sh -c "
apk add --no-cache build-base musl-dev gcc g++ openssl-dev pkg-config && apk add --no-cache build-base musl-dev gcc g++ openssl-dev &&
rustup target add x86_64-unknown-linux-gnu && rustup target add x86_64-unknown-linux-gnu &&
cargo build --release --target x86_64-unknown-linux-gnu && cargo build --release --target x86_64-unknown-linux-gnu &&
mkdir -p release-artifacts && mkdir -p release-artifacts &&
@ -87,7 +87,7 @@ jobs:
with: with:
args: > args: >
sh -c " sh -c "
apk add --no-cache build-base mingw-w64-gcc mingw-w64-headers mingw-w64-crt mingw-w64-winpthreads && apk add --no-cache build-base mingw-w64 &&
rustup target add x86_64-pc-windows-gnu && rustup target add x86_64-pc-windows-gnu &&
cargo build --release --target x86_64-pc-windows-gnu && cargo build --release --target x86_64-pc-windows-gnu &&
mkdir -p release-artifacts && mkdir -p release-artifacts &&