From 20b9bf3c0278048e43c5f0b635d95a655161f4a0 Mon Sep 17 00:00:00 2001 From: Romain Beuque <556072+rbeuque74@users.noreply.github.com> Date: Wed, 10 Feb 2021 09:45:00 +0100 Subject: [PATCH] misc: remove travis-ci.org hook (#228) travis-ci.org is closing. We will perform the CI pipeline from CDS only for now on. Closes #218. Signed-off-by: Romain Beuque <556072+rbeuque74@users.noreply.github.com> --- .travis.yml | 49 ------------------------------------------------- 1 file changed, 49 deletions(-) delete mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index a2a44100..00000000 --- a/.travis.yml +++ /dev/null @@ -1,49 +0,0 @@ -os: - - linux -dist: bionic - -language: go -go: - - "1.15" - - "master" -go_import_path: github.com/ovh/utask - -cache: apt - -services: - - postgresql -addons: - postgresql: "9.5" - -env: - global: - - GO111MODULE=on - - DEV=true - - PG_USER=travis - - PG_PASSWORD=travispwd - - PG_HOST=localhost - - PG_PORT=5432 - - PG_DATABASENAME=travisdb - - PSQL_BIN="psql travisdb" - -before_script: - - psql -c 'create database travisdb;' -U postgres - -# we could also use YAML aliases for Golang steps https://docs.travis-ci.com/user/build-stages/using-yaml-aliases/ -script: - - make test-travis - - make release - -after_success: - - $GOPATH/bin/goveralls -coverprofile=coverage.out -service=travis-ci -repotoken $COVERALLS_TOKEN # upload coverage.out results to goveralls plateform - -jobs: - include: - - name: test docker build - script: docker build -t utask-dev ./ - language: shell - addons: {} - before_script: echo "override before_script" - after_success: echo "override after_success" - allow_failures: - - go: master