From bce736993efdc2501df26a2a773b4999c5580437 Mon Sep 17 00:00:00 2001 From: Wim Date: Wed, 24 Jun 2020 23:45:45 +0200 Subject: Remove travis as it isn't working anymore --- ci/bintray.sh | 30 ------------------------------ ci/lint.sh | 17 ----------------- ci/test.sh | 17 ----------------- 3 files changed, 64 deletions(-) delete mode 100755 ci/bintray.sh delete mode 100755 ci/lint.sh delete mode 100755 ci/test.sh (limited to 'ci') 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 < ./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 -- cgit v1.2.3