Skip to content
This repository has been archived by the owner on Feb 26, 2024. It is now read-only.

Commit

Permalink
Merge pull request #3071 from trufflesuite/circleci-project-setup
Browse files Browse the repository at this point in the history
Internal improvement: Swap out TravisCI for CircleCI for Colony job
  • Loading branch information
CruzMolina authored May 22, 2020
2 parents 082d61e + 9d058d7 commit 6ce968b
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 5 deletions.
22 changes: 22 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
version: 2.1
orbs:
node: circleci/[email protected]
jobs:
build-and-test:
executor:
name: node/default
steps:
- checkout
- run: npm i -g yarn
- run: yarn bootstrap
- run: truffle obtain --solc=0.5.16
- run: COLONY=true yarn ci

workflows:
colony:
jobs:
- build-and-test:
filters:
branches:
only:
- develop
5 changes: 0 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,6 @@ matrix:
env: FABRICEVM=true
- node_js: 8
env: COVERAGE=true
- if: |
branch = develop AND \
type = push
node_js: 10
env: COLONY=true
allow_failures:
- node_js: 8
env: COVERAGE=true
Expand Down

0 comments on commit 6ce968b

Please sign in to comment.