summaryrefslogtreecommitdiff
path: root/vendor/modernc.org/libc/build_all_targets.sh
diff options
context:
space:
mode:
authorLibravatar kim <89579420+NyaaaWhatsUpDoc@users.noreply.github.com>2022-09-28 18:30:40 +0100
committerLibravatar GitHub <noreply@github.com>2022-09-28 18:30:40 +0100
commita156188b3eb5cb3da44aa1b7452265f5fa38a607 (patch)
tree7097fa48d56fbabc7c2c8750b1f3bc9321d71c0f /vendor/modernc.org/libc/build_all_targets.sh
parent[bugfix] Fix emphasis being added to emoji shortcodes with markdown parsing (... (diff)
downloadgotosocial-a156188b3eb5cb3da44aa1b7452265f5fa38a607.tar.xz
[chore] update dependencies, bump to Go 1.19.1 (#826)
* update dependencies, bump Go version to 1.19 * bump test image Go version * update golangci-lint * update gotosocial-drone-build * sign * linting, go fmt * update swagger docs * update swagger docs * whitespace * update contributing.md * fuckin whoopsie doopsie * linterino, linteroni * fix followrequest test not starting processor * fix other api/client tests not starting processor * fix remaining tests where processor not started * bump go-runners version * don't check last-webfingered-at, processor may have updated this * update swagger command * update bun to latest version * fix embed to work the same as before with new bun Signed-off-by: kim <grufwub@gmail.com> Co-authored-by: tsmethurst <tobi.smethurst@protonmail.com>
Diffstat (limited to 'vendor/modernc.org/libc/build_all_targets.sh')
-rw-r--r--vendor/modernc.org/libc/build_all_targets.sh40
1 files changed, 40 insertions, 0 deletions
diff --git a/vendor/modernc.org/libc/build_all_targets.sh b/vendor/modernc.org/libc/build_all_targets.sh
new file mode 100644
index 000000000..c591f6f58
--- /dev/null
+++ b/vendor/modernc.org/libc/build_all_targets.sh
@@ -0,0 +1,40 @@
+set -e
+for tag in none dmesg libc.membrk libc.memgrind
+ do echo "-tags=$tag" ; \
+ GOOS=darwin GOARCH=amd64 go build -tags=$tag -v ./...
+ GOOS=darwin GOARCH=amd64 go test -tags=$tag -c -o /dev/null
+ GOOS=darwin GOARCH=arm64 go build -tags=$tag -v ./...
+ GOOS=darwin GOARCH=arm64 go test -tags=$tag -c -o /dev/null
+ GOOS=freebsd GOARCH=386 go build -tags=$tag -v ./...
+ GOOS=freebsd GOARCH=386 go test -tags=$tag -c -o /dev/null
+ GOOS=freebsd GOARCH=amd64 go build -tags=$tag -v ./...
+ GOOS=freebsd GOARCH=amd64 go test -tags=$tag -c -o /dev/null
+ GOOS=freebsd GOARCH=arm go build -tags=$tag -v ./...
+ GOOS=freebsd GOARCH=arm go test -tags=$tag -c -o /dev/null
+ GOOS=linux GOARCH=386 go build -tags=$tag -v ./...
+ GOOS=linux GOARCH=386 go test -tags=$tag -c -o /dev/null
+ GOOS=linux GOARCH=amd64 go build -tags=$tag -v ./...
+ GOOS=linux GOARCH=amd64 go test -tags=$tag -c -o /dev/null
+ GOOS=linux GOARCH=arm go build -tags=$tag -v ./...
+ GOOS=linux GOARCH=arm go test -tags=$tag -c -o /dev/null
+ GOOS=linux GOARCH=arm64 go build -tags=$tag -v ./...
+ GOOS=linux GOARCH=arm64 go test -tags=$tag -c -o /dev/null
+ GOOS=linux GOARCH=ppc64le go test -tags=$tag -c -o /dev/null
+ GOOS=linux GOARCH=ppc64le go test -tags=$tag -c -o /dev/null
+ GOOS=linux GOARCH=riscv64 go build -tags=$tag -v ./...
+ GOOS=linux GOARCH=riscv64 go build -tags=$tag -v ./...
+ GOOS=linux GOARCH=s390x go build -tags=$tag -v ./...
+ GOOS=linux GOARCH=s390x go test -tags=$tag -c -o /dev/null
+ GOOS=netbsd GOARCH=amd64 go build -tags=$tag -v ./...
+ GOOS=netbsd GOARCH=amd64 go test -tags=$tag -c -o /dev/null
+ GOOS=openbsd GOARCH=amd64 go build -tags=$tag -v ./...
+ GOOS=openbsd GOARCH=amd64 go test -tags=$tag -c -o /dev/null
+ GOOS=openbsd GOARCH=arm64 go build -tags=$tag -v ./...
+ GOOS=openbsd GOARCH=arm64 go test -tags=$tag -c -o /dev/null
+ GOOS=windows GOARCH=386 go build -tags=$tag -v ./...
+ GOOS=windows GOARCH=386 go test -tags=$tag -c -o /dev/null
+ GOOS=windows GOARCH=amd64 go build -tags=$tag -v ./...
+ GOOS=windows GOARCH=amd64 go test -tags=$tag -c -o /dev/null
+ GOOS=windows GOARCH=arm64 go build -tags=$tag -v ./...
+ GOOS=windows GOARCH=arm64 go test -tags=$tag -c -o /dev/null
+done