Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
66 changes: 66 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
version: 2.1

orbs:
rebar3: tsloughter/rebar3@0.5.1

commands:
upload:
# parameters:
# token:
# description: The API token to use for uploading to Codecov.
# type: string
# default: $CODECOV_TOKEN
# path:
# description: Path to the code coverage data file to upload.
# type: string
# steps:
# - run:
# name: Upload Coverage Results
# command: |
# apk add --no-cache curl
# curl --request POST --retry 3 --silent --show-error --fail \
# --data-binary @<< parameters.path >> \
# "https://codecov.io/upload/v2?service=circleci\
# &token=<< parameters.token >>\
# &commit=$CIRCLE_SHA1\
# &branch=$CIRCLE_BRANCH\
# &build=$CIRCLE_BUILD_NUM\
# &job=$CIRCLE_NODE_INDEX\
# &build_url=$CIRCLE_BUILD_URL\
# &slug=$CIRCLE_PROJECT_USERNAME/$CIRCLE_PROJECT_REPONAME\
# &pr=$CIRCLE_PR_NUMBER"
# jobs:
# codecov:
# executor: rebar3/erlang
# steps:
# - rebar3/install_ca_certs
# - checkout
# - attach_workspace:
# at: ~/project/
# - run:
# command: |
# rebar3 covertool generate
# - upload:
# path: ~/project/_build/test/covertool/grpcbox.covertool.xml

workflows:
version: 2.1
build_and_test:
jobs:
- rebar3/compile
- rebar3/xref:
requires:
- rebar3/compile
- rebar3/dialyzer:
requires:
- rebar3/compile
- rebar3/ct:
requires:
- rebar3/compile
# - rebar3/cover:
# requires:
# - rebar3/ct
# - codecov:
# requires:
# - rebar3/cover

13 changes: 0 additions & 13 deletions .travis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion README.org
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#+TITLE: VRRM: just enough consensus

[[https://travis-ci.org/evanmcc/vrrm.svg?branch=master]]
[![CircleCI](https://circleci.com/gh/evanmcc/vrrm.svg?style=svg)](https://circleci.com/gh/evanmcc/vrrm)

* DISCLAIMER
calling this research quality code is an insult to research quality
Expand Down