mirror of
https://github.com/fnproject/fn.git
synced 2022-10-28 21:29:17 +03:00
* Logs should support specifying region when using S3-compatible object store * Use aws-sdk-go client for s3 backed logstore * fixes vendor with aws-sdk-go dependencies
22 lines
489 B
YAML
22 lines
489 B
YAML
version: 0.2
|
|
|
|
phases:
|
|
build:
|
|
commands:
|
|
- echo Build started on `date`
|
|
- export GOPATH=/go
|
|
- export SDK_CB_ROOT=`pwd`
|
|
- export SDK_GO_ROOT=/go/src/github.com/aws/aws-sdk-go
|
|
- mkdir -p /go/src/github.com/aws
|
|
- ln -s $SDK_CB_ROOT $SDK_GO_ROOT
|
|
- cd $SDK_GO_ROOT
|
|
- make unit
|
|
- cd $SDK_CB_ROOT
|
|
- #echo Compiling the Go code...
|
|
post_build:
|
|
commands:
|
|
- echo Build completed on `date`
|
|
#artifacts:
|
|
# files:
|
|
# - hello
|