hub/gh_task.go

71 строка
1.7 KiB
Go
Исходник Обычный вид История

2013-10-24 02:00:57 +04:00
// +build gotask
package main
import (
"github.com/jingweno/gotask/tasking"
"os"
"runtime"
)
// NAME
// cross-compile-all - cross-compiles gh for all supported platforms.
//
// DESCRIPTION
// Cross-compiles gh for all supported platforms. Build artifacts will be in target/VERSION.
// This only works on darwin with Vagrant setup.
func TaskCrossCompileAll(t *tasking.T) {
t.Log("Removing build target...")
err := os.RemoveAll("target")
if err != nil {
t.Errorf("Can't remove build target: %s\n", err)
return
}
// for current
t.Logf("Compiling for %s...\n", runtime.GOOS)
TaskCrossCompile(t)
if t.Failed() {
return
}
// for linux
t.Log("Compiling for linux...")
2013-11-26 19:33:48 +04:00
err = t.Exec("vagrant ssh -c 'cd ~/src/github.com/jingweno/gh && git pull origin master && go get -u ./... && gotask cross-compile'")
if err != nil {
t.Errorf("Can't compile on linux: %s\n", err)
return
}
}
// NAME
// cross-compile - cross-compiles gh for current platform.
2013-10-24 02:00:57 +04:00
//
// DESCRIPTION
// Cross-compiles gh for current platform. Build artifacts will be in target/VERSION
2013-10-24 02:20:47 +04:00
func TaskCrossCompile(t *tasking.T) {
2013-10-24 02:00:57 +04:00
t.Log("Updating goxc...")
err := t.Exec("go get -u github.com/laher/goxc")
if err != nil {
t.Errorf("Can't update goxc: %s\n", err)
return
}
// TODO: use a dependency manager that has versioning
2013-12-02 10:57:22 +04:00
//if runtime.GOOS != "windows" {
2013-12-02 18:35:46 +04:00
//t.Log("Updating dependencies...")
//err = t.Exec("go get -u ./...")
//if err != nil {
//t.Errorf("Can't update goxc: %s\n", err)
//return
//}
2013-12-02 10:57:22 +04:00
//}
t.Logf("Cross-compiling gh for %s...\n", runtime.GOOS)
2013-10-24 02:00:57 +04:00
err = t.Exec("goxc", "-wd=.", "-os="+runtime.GOOS, "-c="+runtime.GOOS)
if err != nil {
2013-10-24 02:16:13 +04:00
t.Errorf("Can't cross-compile gh: %s\n", err)
2013-10-24 02:00:57 +04:00
return
}
}