Commit 88089391 by Torkel Ödegaard

Removed deploy step from circle, will go in another repo

parent 07a21e92
...@@ -73,8 +73,8 @@ func main() { ...@@ -73,8 +73,8 @@ func main() {
case "package": case "package":
//verifyGitRepoIsClean() //verifyGitRepoIsClean()
createRpmAndDeb()
grunt("release", "--pkgVer="+version) grunt("release", "--pkgVer="+version)
createRpmAndDeb()
case "latest": case "latest":
makeLatestDistCopies() makeLatestDistCopies()
......
...@@ -7,15 +7,10 @@ machine: ...@@ -7,15 +7,10 @@ machine:
REPO_PATH: "${ORG_PATH}/grafana" REPO_PATH: "${ORG_PATH}/grafana"
dependencies: dependencies:
cache_directories:
- "~/docker"
pre:
- ./docker/buildcontainer/build_circle.sh
override: override:
- rm -rf ${GOPATH}/src/${REPO_PATH} - rm -rf ${GOPATH}/src/${REPO_PATH}
- mkdir -p ${GOPATH}/src/${ORG_PATH} - mkdir -p ${GOPATH}/src/${ORG_PATH}
- cp -r ../grafana ${GOPATH}/src/${ORG_PATH} - ln -s ~/grafana ${GOPATH}/src/${ORG_PATH}
- go get github.com/tools/godep - go get github.com/tools/godep
- npm install - npm install
...@@ -23,11 +18,3 @@ test: ...@@ -23,11 +18,3 @@ test:
override: override:
- godep go test -v ./pkg/... - godep go test -v ./pkg/...
- ./node_modules/grunt-cli/bin/grunt test - ./node_modules/grunt-cli/bin/grunt test
deployment:
develop:
branch: develop
owner: grafana
commands:
- ./docker/buildcontainer/run_circle.sh
- go run build.go package latest
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment