From fd8e68dd89e9afa61d1fa553b1c9caa5408719db Mon Sep 17 00:00:00 2001 From: Gustavo Chain Date: Tue, 27 Aug 2019 09:49:48 +0200 Subject: [PATCH] remove .drone.yml --- .drone.yml | 84 ------------------------------------------------------ 1 file changed, 84 deletions(-) delete mode 100644 .drone.yml diff --git a/.drone.yml b/.drone.yml deleted file mode 100644 index f9660e59..00000000 --- a/.drone.yml +++ /dev/null @@ -1,84 +0,0 @@ -# Kosu monorepo CI config file (last updated: 24 June 2019) - -kind: pipeline -name: tests - -steps: - - name: prettier-project - image: gcr.io/kosu-io/node-lts:latest - pull: always - environment: - WEB3_URI: http://kosu-geth:8545 - commands: - - yarn prettier:ci - depends_on: - - clone - - - name: build-project - image: gcr.io/kosu-io/node-lts:latest - pull: always - environment: - WEB3_URI: http://kosu-geth:8545 - commands: - - yarn - - yarn setup:ci - - cd packages/kosu-system-contracts - - yarn migrate:ci - depends_on: - - clone - - - name: npm-tests - image: gcr.io/kosu-io/node-lts:latest - pull: always - environment: - WEB3_URI: http://kosu-geth:8545 - commands: - - yarn test:ci - depends_on: - - build-project - - - name: solidity-tests - image: gcr.io/kosu-io/node-lts:latest - pull: always - environment: - WEB3_URI: http://kosu-geth:8545 - commands: - - yarn contracts:test:ci - depends_on: - - build-project - - - name: go-kosu - image: gcr.io/kosu-io/go-kosu-ci:latest - pull: always - environment: - WEB3_TEST_URI: ws://kosu-geth:8546 - commands: - - cd packages/go-kosu - - make ci - depends_on: - - build-project - -services: - - name: kosu-geth - image: gcr.io/kosu-io/kosu-test-geth:latest - pull: always - ports: - - 8545 - - 8546 - -trigger: - event: - - pull_request - -# UNTESTED -# --- -# kind: pipeline -# name: go-kosu-release -# -# release: -# image: golang:1.12 -# secrets: [github_token] -# commands: -# curl -sL https://git.io/goreleaser | bash -# when: -# event: tag