aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/github.com/minio/sha256-simd/test-architectures.sh
diff options
context:
space:
mode:
authorLibravatar Rutger Broekhoff2024-01-02 18:56:31 +0100
committerLibravatar Rutger Broekhoff2024-01-02 18:56:31 +0100
commit8db41da676ac8368ef7c2549d56239a5ff5eedde (patch)
tree09c427fd66de2ec1ebffc8342f5fdbb84b0701b5 /vendor/github.com/minio/sha256-simd/test-architectures.sh
parentd4f75fb6db22e57577867445a022227e70958931 (diff)
downloadgitolfs3-8db41da676ac8368ef7c2549d56239a5ff5eedde.tar.gz
gitolfs3-8db41da676ac8368ef7c2549d56239a5ff5eedde.zip
Delete vendor directory
Diffstat (limited to 'vendor/github.com/minio/sha256-simd/test-architectures.sh')
-rw-r--r--vendor/github.com/minio/sha256-simd/test-architectures.sh15
1 files changed, 0 insertions, 15 deletions
diff --git a/vendor/github.com/minio/sha256-simd/test-architectures.sh b/vendor/github.com/minio/sha256-simd/test-architectures.sh
deleted file mode 100644
index 50150ea..0000000
--- a/vendor/github.com/minio/sha256-simd/test-architectures.sh
+++ /dev/null
@@ -1,15 +0,0 @@
1#!/bin/sh
2
3set -e
4
5go tool dist list | while IFS=/ read os arch; do
6 echo "Checking $os/$arch..."
7 echo " normal"
8 GOARCH=$arch GOOS=$os go build -o /dev/null ./...
9 echo " noasm"
10 GOARCH=$arch GOOS=$os go build -tags noasm -o /dev/null ./...
11 echo " appengine"
12 GOARCH=$arch GOOS=$os go build -tags appengine -o /dev/null ./...
13 echo " noasm,appengine"
14 GOARCH=$arch GOOS=$os go build -tags 'appengine noasm' -o /dev/null ./...
15done