integration: compile on current architecture by default
This commit is contained in:
parent
527593c6df
commit
23845b071b
1 changed files with 3 additions and 0 deletions
|
@ -41,6 +41,9 @@ func (env *TravisEnvironment) Prepare() {
|
||||||
}
|
}
|
||||||
|
|
||||||
env.goxOS = []string{"linux", "darwin", "freebsd", "openbsd", "windows"}
|
env.goxOS = []string{"linux", "darwin", "freebsd", "openbsd", "windows"}
|
||||||
|
} else {
|
||||||
|
env.goxArch = []string{runtime.GOARCH}
|
||||||
|
env.goxOS = []string{runtime.GOOS}
|
||||||
}
|
}
|
||||||
|
|
||||||
msg("gox: OS %v, ARCH %v\n", env.goxOS, env.goxArch)
|
msg("gox: OS %v, ARCH %v\n", env.goxOS, env.goxArch)
|
||||||
|
|
Loading…
Reference in a new issue