From 763652fe9a0ff801e57a8edaacbd3fbcf227ad74 Mon Sep 17 00:00:00 2001 From: Andras Banki-Horvath Date: Mon, 3 Jul 2023 16:27:19 +0200 Subject: [PATCH] build: deprecate windows 386 from the release The modernc.org/sqlite package does not build on windows 386 so we're removing it from our release script. --- release.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/release.sh b/release.sh index f37b45b..1e0f4fd 100755 --- a/release.sh +++ b/release.sh @@ -73,7 +73,7 @@ cd $MAINDIR # If LOOPBUILDSYS is set the default list is ignored. Useful to release # for a subset of systems/architectures. -SYS=${LOOPBUILDSYS:-"windows-386 windows-amd64 openbsd-386 openbsd-amd64 linux-386 linux-amd64 linux-armv6 linux-armv7 linux-arm64 darwin-amd64 dragonfly-amd64 freebsd-386 freebsd-amd64 freebsd-arm netbsd-386 netbsd-amd64 linux-mips64 linux-mips64le linux-ppc64"} +SYS=${LOOPBUILDSYS:-"windows-amd64 openbsd-386 openbsd-amd64 linux-386 linux-amd64 linux-armv6 linux-armv7 linux-arm64 darwin-amd64 dragonfly-amd64 freebsd-386 freebsd-amd64 freebsd-arm netbsd-386 netbsd-amd64 linux-mips64 linux-mips64le linux-ppc64"} # Use the first element of $GOPATH in the case where GOPATH is a list # (something that is totally allowed).