summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2014-03-05 12:03:27 -0500
committerPietro Gagliardi <[email protected]>2014-03-05 12:03:27 -0500
commit9886dc2c165eb879e05c04c8072a513e17b30362 (patch)
tree71292d653a48adebc7b86f84f954865a70625443
parent27b37272d77e3c8f6e1e6756ed5bdd1dc86475ae (diff)
Disabled Travis.ci's linux/386 build for now; not sure how to fix it.
-rw-r--r--.travis.yml11
1 files changed, 7 insertions, 4 deletions
diff --git a/.travis.yml b/.travis.yml
index 4f34990..a48d79f 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -3,21 +3,24 @@ language: go
go:
- tip
+# TODO
+# linux/386 build tries to do apt's legendary remove all 64-bit libraries and install 32-bit ones instead (else it can't find sys/types.h) so that build is disabled for now
+
env:
- - GOOS=linux GOARCH=386 CGO_ENABLED=1 CFLAGS=-m32 LDFLAGS=-m32
+# - GOOS=linux GOARCH=386 CGO_ENABLED=1 CFLAGS=-m32 LDFLAGS=-m32
- GOOS=linux GOARCH=amd64
- GOOS=windows GOARCH=386
- GOOS=windows GOARCH=amd64
before_install:
- sudo apt-get update -qq
- - sudo apt-get install -qq libgtk-3-dev libgtk-3-0:i386 gcc-multilib
+ - sudo apt-get install -qq libgtk-3-dev libgtk-3-0:i386 # gcc-multilib
- go tool dist install cmd/8a
- go tool dist install cmd/8c
- go tool dist install cmd/8g
- go tool dist install cmd/8l
- - GOOS=linux GOARCH=386 CGO_ENABLED=1 CFLAGS=-m32 LDFLAGS=-m32 go tool dist install pkg/runtime
- - GOOS=linux GOARCH=386 CGO_ENABLED=1 CFLAGS=-m32 LDFLAGS=-m32 go install std
+# - GOOS=linux GOARCH=386 CGO_ENABLED=1 CFLAGS=-m32 LDFLAGS=-m32 go tool dist install pkg/runtime
+# - GOOS=linux GOARCH=386 CGO_ENABLED=1 CFLAGS=-m32 LDFLAGS=-m32 go install std
- GOOS=windows GOARCH=386 go tool dist install pkg/runtime
- GOOS=windows GOARCH=386 go install std
- GOOS=windows GOARCH=amd64 go tool dist install pkg/runtime