Skip to content

Commit

Permalink
Wercker attempt 2
Browse files Browse the repository at this point in the history
  • Loading branch information
nimajalali committed Nov 7, 2013
1 parent c637e99 commit 9ba3895
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 23 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
go-force
======

[![wercker status](https://app.wercker.com/status/66ea433103de60e20ce0f96340a75828/m "wercker status")](https://app.wercker.com/project/bykey/66ea433103de60e20ce0f96340a75828)

[Golang](http://golang.org/) API wrapper for [Force.com](http://www.force.com/), [Salesforce.com](http://www.salesforce.com/)

Installation
Expand Down
46 changes: 23 additions & 23 deletions wercker.yml
Original file line number Diff line number Diff line change
@@ -1,28 +1,28 @@
box: wercker/golang
#Build definition
# Build definition
build:
#The steps that will be executed on build
steps:
# Sets the go workspace and places you package
# at the right place in the workspace tree
- setup-go-workspace
# The steps that will be executed on build
steps:
# Sets the go workspace and places you package
# at the right place in the workspace tree
- setup-go-workspace

#Gets the dependencies
- script:
name: get dependencies
code: |
cd $WERCKER_SOURCE_DIR
go version
go get all
# Gets the dependencies
- script:
name: go get
code: |
cd $WERCKER_SOURCE_DIR
go version
go get ./...
# Build the project
- script:
name: build
code: |
go install go-force/force
# Build the project
- script:
name: go build
code: |
go build ./...
# Test the project
- script:
name: test
code: |
go test go-force/force
# Test the project
- script:
name: go test
code: |
go test ./...

0 comments on commit 9ba3895

Please sign in to comment.