From d2af6dcf3874b0947fefa8cba985aa0fafe9b5da Mon Sep 17 00:00:00 2001 From: Jakob Borg Date: Fri, 4 Sep 2015 15:31:03 +0200 Subject: [PATCH] CircleCI just plain doesn't work for us. --- README.md | 1 - circle.yml | 28 ---------------------------- 2 files changed, 29 deletions(-) delete mode 100644 circle.yml diff --git a/README.md b/README.md index 5d8d75519..7a4b1af87 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,6 @@ Syncthing ========= [![Latest Build (Official)](https://img.shields.io/jenkins/s/http/build.syncthing.net/syncthing.svg?style=flat-square)](http://build.syncthing.net/job/syncthing/lastBuild/) -[![Latest Build (Second Opinion)](https://img.shields.io/circleci/project/syncthing/syncthing.svg?style=flat-square)](https://circleci.com/gh/syncthing/syncthing) [![API Documentation](https://img.shields.io/badge/api-Godoc-blue.svg?style=flat-square)](http://godoc.org/github.com/syncthing/syncthing) [![MPLv2 License](https://img.shields.io/badge/license-MPLv2-blue.svg?style=flat-square)](https://www.mozilla.org/MPL/2.0/) diff --git a/circle.yml b/circle.yml deleted file mode 100644 index fee4725ce..000000000 --- a/circle.yml +++ /dev/null @@ -1,28 +0,0 @@ -machine: - environment: - GOROOT: ${HOME}/go1.5 - GOARM: 5 - GO386: 387 - PATH: ${HOME}/go1.5/bin:${PATH} - -dependencies: - cache_directories: - - ~/go1.5 - override: - # Make sure our desired go version is installed - - ./script/circle-installgo.sh - - go version - -test: - override: - # First install latest versions of all dependencies - - go get -v -t -d ./... - # Clean out old crap - - git clean -fxd - - go clean -i -r ./cmd/... - # Build the binaries with those - - go build -i ./cmd/... - # And run the tests - - go test -short ./... - # Build all packages, using the vendored dependencies. - - ./build.sh all