summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJakob Borg <jakob@nym.se>2016-04-20 07:12:01 +0000
committerAudrius Butkevicius <audrius.butkevicius@gmail.com>2016-04-20 07:12:01 +0000
commitcb38213444107a912b4258332f30a2bec872aa2a (patch)
tree2a31244a4b303b977c903aa0f496e3d1b7c78caa
parent842b6111dbacf82b9fe75aa0e5b270b85cc4b6aa (diff)
build: Remove Appveyor and old CircleCI stuff
GitHub-Pull-Request: https://github.com/syncthing/syncthing/pull/2997
-rw-r--r--appveyor.yaml12
-rwxr-xr-xscript/circle-installgo.sh33
2 files changed, 0 insertions, 45 deletions
diff --git a/appveyor.yaml b/appveyor.yaml
deleted file mode 100644
index 62d6dfe8d3..0000000000
--- a/appveyor.yaml
+++ /dev/null
@@ -1,12 +0,0 @@
-version: '{branch}-{build}'
-clone_folder: C:\src\github.com\syncthing\syncthing
-init:
-- go version
-environment:
- GOPATH: C:\
-build_script:
-- go run build.go zip
-test_script:
-- go run build.go test
-artifacts:
-- path: '*.zip'
diff --git a/script/circle-installgo.sh b/script/circle-installgo.sh
deleted file mode 100755
index f81294732f..0000000000
--- a/script/circle-installgo.sh
+++ /dev/null
@@ -1,33 +0,0 @@
-#!/bin/bash
-set -euo pipefail
-
-[ -d ~/go1.5 ] && exit
-
-# Install the version of Go that we want
-
-curl -s https://storage.googleapis.com/golang/go1.5.linux-amd64.tar.gz \
- | tar -C ~ --transform s/go/go1.5/ -zx
-
-# Build the standard library for all our cross compilation targets. We do that
-# here so that it gets cached and we don't need to repeat it for every build.
-
-for GOOS in darwin dragonfly solaris; do
- export GOOS
- export GOARCH=amd64
- echo $GOOS $GOARCH
- go install std
-done
-
-for GOOS in freebsd linux netbsd openbsd windows; do
- for GOARCH in amd64 386; do
- export GOOS
- export GOARCH
- echo $GOOS $GOARCH
- go install std
- done
-done
-
-export GOOS=linux
-export GOARCH=arm
-echo $GOOS $GOARCH
-go install std