|
@@ -17,8 +17,8 @@ cross() {
|
|
|
shift
|
|
|
echo2 "Build for $os."
|
|
|
for arch in $@; do
|
|
|
- echo2 " - $os/$arch"
|
|
|
- GOOS=$os GOARCH=$arch go build
|
|
|
+ echo2 " - $os/$arch"
|
|
|
+ GOOS=$os GOARCH=$arch go build
|
|
|
done
|
|
|
echo2
|
|
|
}
|
|
@@ -26,7 +26,7 @@ cross() {
|
|
|
set -e
|
|
|
|
|
|
cross linux amd64 386 arm arm64 ppc64 ppc64le s390x mips mipsle mips64 mips64le
|
|
|
-cross darwin amd64 386 arm arm64
|
|
|
+cross darwin amd64 arm64
|
|
|
cross freebsd amd64 386 arm
|
|
|
cross netbsd amd64 386 arm
|
|
|
cross openbsd amd64 386 arm arm64
|
|
@@ -47,4 +47,18 @@ fi
|
|
|
|
|
|
echo2 "Build for linux."
|
|
|
echo2 " - linux/riscv"
|
|
|
-docker build -t test -f Dockerfile.riscv .
|
|
|
+docker build -t creack-pty-test -f Dockerfile.riscv .
|
|
|
+
|
|
|
+# Golang dropped support for darwin 32bits since go1.15. Make sure the lib still compile with go1.14 on those archs.
|
|
|
+echo2 "Build for darwin (32bits)."
|
|
|
+echo2 " - darwin/386"
|
|
|
+docker build -t creack-pty-test -f Dockerfile.golang --build-arg=GOVERSION=1.14 --build-arg=GOOS=darwin --build-arg=GOARCH=386 .
|
|
|
+echo2 " - darwin/arm"
|
|
|
+docker build -t creack-pty-test -f Dockerfile.golang --build-arg=GOVERSION=1.14 --build-arg=GOOS=darwin --build-arg=GOARCH=arm .
|
|
|
+
|
|
|
+# Run a single test for an old go version. Would be best with go1.0, but not available on Dockerhub.
|
|
|
+# Using 1.6 as it is the base version for the RISCV compiler.
|
|
|
+# Would also be better to run all the tests, not just one, need to refactor this file to allow for specifc archs per version.
|
|
|
+echo2 "Build for linux - go1.6."
|
|
|
+echo2 " - linux/amd64"
|
|
|
+docker build -t creack-pty-test -f Dockerfile.golang --build-arg=GOVERSION=1.6 --build-arg=GOOS=linux --build-arg=GOARCH=amd64 .
|