forked from mystiq/dex
07236da1e7
go-sqlite3 takes a long time to compile, so it's very important to cache a build rather than re-compile every time. Use go install instead of go build in the build script to cache all packages. Print a warning in the test script if cached packages are not found.
6 lines
123 B
Bash
Executable file
6 lines
123 B
Bash
Executable file
#!/bin/bash -e
|
|
|
|
source ./env
|
|
|
|
go test $@ github.com/coreos/dex/functional
|
|
go test $@ github.com/coreos/dex/functional/repo
|