summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWim <wim@42.be>2020-06-24 23:45:45 +0200
committerWim <wim@42.be>2020-06-24 23:45:45 +0200
commitbce736993efdc2501df26a2a773b4999c5580437 (patch)
tree74c9560603be8c3c2faa4241e87bcd17f490e82e
parent56369924460e14f61c389269801247781adf8e84 (diff)
downloadmatterbridge-msglm-bce736993efdc2501df26a2a773b4999c5580437.tar.gz
matterbridge-msglm-bce736993efdc2501df26a2a773b4999c5580437.tar.bz2
matterbridge-msglm-bce736993efdc2501df26a2a773b4999c5580437.zip
Remove travis as it isn't working anymore
-rw-r--r--.travis.yml56
-rwxr-xr-xci/bintray.sh30
-rwxr-xr-xci/lint.sh17
-rwxr-xr-xci/test.sh17
4 files changed, 0 insertions, 120 deletions
diff --git a/.travis.yml b/.travis.yml
deleted file mode 100644
index e3380ba5..00000000
--- a/.travis.yml
+++ /dev/null
@@ -1,56 +0,0 @@
-language: go
-go_import_path: github.com/42wim/matterbridge
-
-# We have everything vendored so this helps TravisCI not run `go get ...`.
-install: true
-
-git:
- depth: 200
-
-notifications:
- email: false
-
-branches:
- only:
- - master
- - /.*/
-
-jobs:
- include:
- - stage: lint
- # Run linting in one Go environment only.
- script: ./ci/lint.sh
- go: 1.14.x
- env:
- - GO111MODULE=on
- - GOLANGCI_VERSION="v1.23.7"
- - stage: test
- # Run tests in a combination of Go environments.
- script: ./ci/test.sh
- go: 1.13.x
- env:
- - GOFLAGS=-mod=vendor
- - script: ./ci/test.sh
- go: 1.13.x
- env:
- - GO111MODULE=on
- - script: ./ci/test.sh
- go: 1.14.x
- env:
- - GO111MODULE=on
- - REPORT_COVERAGE=1
- - BINDEPLOY=1
-
-before_deploy: /bin/bash ci/bintray.sh
-
-deploy:
- on:
- all_branches: true
- condition: $BINDEPLOY = 1
- provider: bintray
- edge:
- branch: v1.8.47
- file: ci/deploy.json
- user: 42wim
- key:
- secure: "CeXXe6JOmt7HYR81MdWLua0ltQHhDdkIeRGBFbgd7hkb1wi8eF9DgpAcQrTso8NIlHNZmSAP46uhFgsRvkuezzX0ygalZ7DCJyAyn3sAMEh+UQSHV1WGThRehTtidqRGjetzsIGSwdrJOWil+XTfbO1Z8DGzfakhSuAZka8CM4BAoe3YeP9rYK8h+84x0GHfczvsLtXZ3mWLvQuwe4pK6+ItBCUg0ae7O7ZUpWHy0xQQkkWztY/6RAzXfaG7DuGjIw+20fhx3WOXRNpHCtZ6Bc3qERCpk0s1HhlQWlrN9wDaFTBWYwlvSnNgvxxMbNXJ6RrRJ0l0bA7FUswYwyroxhzrGLdzWDg8dHaQkypocngdalfhpsnoO9j3ApJhomUFJ3UoEq5nOGRUrKn8MPi+dP0zE4kNQ3e4VNa1ufNrvfpWolMg3xh8OXuhQdD5wIM5zFAbRJLqWSCVAjPq4DDPecmvXBOlIial7oa312lN5qnBnUjvAcxszZ+FUyDHT1Grxzna4tMwxY9obPzZUzm7359AOCCwIQFVB8GLqD2nwIstcXS0zGRz+fhviPipHuBa02q5bGUZwmkvrSNab0s8Jo7pCrel2Rz3nWPKaiCfq2WjbW1CLheSMkOQrjsdUd1hhbqNWFPUjJPInTc77NAKCfm5runv5uyowRLh4NNd0sI="
diff --git a/ci/bintray.sh b/ci/bintray.sh
deleted file mode 100755
index 3a711117..00000000
--- a/ci/bintray.sh
+++ /dev/null
@@ -1,30 +0,0 @@
-#!/usr/bin/env bash
-set -u -e -x -o pipefail
-
-go version | grep go1.14 || exit
-
-VERSION=$(git describe --tags)
-mkdir ci/binaries
-GOOS=windows GOARCH=amd64 go build -ldflags "-s -w -X main.githash=$(git log --pretty=format:'%h' -n 1)" -o ci/binaries/matterbridge-$VERSION-windows-amd64.exe
-GOOS=linux GOARCH=amd64 go build -ldflags "-s -w -X main.githash=$(git log --pretty=format:'%h' -n 1)" -o ci/binaries/matterbridge-$VERSION-linux-amd64
-GOOS=linux GOARCH=arm go build -ldflags "-s -w -X main.githash=$(git log --pretty=format:'%h' -n 1)" -o ci/binaries/matterbridge-$VERSION-linux-arm
-GOOS=darwin GOARCH=amd64 go build -ldflags "-s -w -X main.githash=$(git log --pretty=format:'%h' -n 1)" -o ci/binaries/matterbridge-$VERSION-darwin-amd64
-cd ci
-cat > deploy.json <<EOF
-{
- "package": {
- "name": "Matterbridge",
- "repo": "nightly",
- "subject": "42wim"
- },
- "version": {
- "name": "$VERSION"
- },
- "files":
- [
- {"includePattern": "ci/binaries/(.*)", "uploadPattern":"\$1"}
- ],
- "publish": true
-}
-EOF
-
diff --git a/ci/lint.sh b/ci/lint.sh
deleted file mode 100755
index dfb504a1..00000000
--- a/ci/lint.sh
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/usr/bin/env bash
-set -u -e -x -o pipefail
-
-if [[ -n "${GOLANGCI_VERSION-}" ]]; then
- # Retrieve the golangci-lint linter binary.
- curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | bash -s -- -b ${GOPATH}/bin ${GOLANGCI_VERSION}
-fi
-
-# Run the linter.
-golangci-lint run
-
-# if [[ "${GO111MODULE-off}" == "on" ]]; then
-# # If Go modules are active then check that dependencies are correctly maintained.
-# go mod tidy
-# go mod vendor
-# git diff --exit-code --quiet || (echo "Please run 'go mod tidy' to clean up the 'go.mod' and 'go.sum' files."; false)
-# fi
diff --git a/ci/test.sh b/ci/test.sh
deleted file mode 100755
index 5d9c258d..00000000
--- a/ci/test.sh
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/usr/bin/env bash
-set -u -e -x -o pipefail
-
-if [[ -n "${REPORT_COVERAGE+cover}" ]]; then
- # Retrieve and prepare CodeClimate's test coverage reporter.
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
- chmod +x ./cc-test-reporter
- ./cc-test-reporter before-build
-fi
-
-# Run all the tests with the race detector and generate coverage.
-go test -v -race -coverprofile c.out ./...
-
-if [[ -n "${REPORT_COVERAGE+cover}" && "${TRAVIS_SECURE_ENV_VARS}" == "true" ]]; then
- # Upload test coverage to CodeClimate.
- ./cc-test-reporter after-build
-fi