f2849a8fb2
* add full cross compilation in travis * reduce the travis build matrix * disable cross build for plan9 and nacl
6 lines
154 B
Bash
Executable File
6 lines
154 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [[ "$TRAVIS_GO_VERSION" =~ ^1.\12\. ]] && [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
|
|
/tmp/gox/gox -build-lib -all -os '!plan9 !nacl'
|
|
fi
|