aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTristan Sloughter <[email protected]>2019-05-14 17:25:21 -0600
committerTristan Sloughter <[email protected]>2019-05-14 17:25:21 -0600
commit02e3d99d6a93e8c9ee982348366ee607aec45cdb (patch)
treed712c7fd873b27e04cdcf5955710113d8440174a
parentf6abbf18842f9f8464e01e7e8c258741ca51adbf (diff)
downloadrelx-02e3d99d6a93e8c9ee982348366ee607aec45cdb.tar.gz
relx-02e3d99d6a93e8c9ee982348366ee607aec45cdb.tar.bz2
relx-02e3d99d6a93e8c9ee982348366ee607aec45cdb.zip
remove travis and circle
-rw-r--r--.circleci/config.yml39
-rw-r--r--.travis.yml35
-rw-r--r--README.md3
3 files changed, 1 insertions, 76 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml
deleted file mode 100644
index ca75335..0000000
--- a/.circleci/config.yml
+++ /dev/null
@@ -1,39 +0,0 @@
-version: 2.1
-orbs:
- rebar3: tsloughter/[email protected]
-
-jobs:
- ct:
- parameters:
- tag:
- description: The docker tag to use.
- type: string
- default: "21.2"
- executor:
- name: rebar3/erlang
- tag: <<parameters.tag>>
- steps:
- - checkout
- - rebar3/ct
- # Delete OTP files which don't need to be stored
- - run: |
- find _build/test/logs -type d -and \( -path "*/erts-*" -or -path "*/kernel-*" -or -path "*/stdlib-*" \) -exec rm -rf '{}' \+ || true
- find _build/test/logs -type f -name "*.beam" -exec rm -rf '{}' \+ || true
- - store_artifacts:
- path: _build/test/logs
-
-workflows:
- build-test:
- jobs:
- - ct:
- name: "21"
- tag: "21.2"
- - ct:
- name: "20"
- tag: "20"
- - ct:
- name: "19"
- tag: "19"
- - ct:
- name: "18"
- tag: "18"
diff --git a/.travis.yml b/.travis.yml
deleted file mode 100644
index 4e4f877..0000000
--- a/.travis.yml
+++ /dev/null
@@ -1,35 +0,0 @@
-language: erlang
-matrix:
- include:
- - os: linux
- sudo: required
- otp_release: 17.5
- - os: osx
- sudo: required
- language: generic
-before_script:
- - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update; fi
- ## should eventually use a tap that has previous erlang versions here
- ## as this only uses the latest erlang available via brew
- - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install erlang; fi
- - wget https://s3.amazonaws.com/rebar3/rebar3
- - chmod +x rebar3
-script: "./rebar3 update && ./rebar3 ct"
-after_failure:
- ## Useful for troubleshooting to view test logs
- - find _build/test/logs/ct_run*/lib*logs/run*/log_private/*-output*/*/log -type f -name "erlang*" -exec ls -1rt "{}" \+ | xargs -I % sh -c 'echo "\n\n%"; cat %'
-branches:
- only:
- - master
-addons:
- hostname: travis.dev
- hosts:
- - travis.dev
-notifications:
- email:
- irc:
- channels:
- - "irc.freenode.org#erlware"
- use_notice: true
- skip_join: true
diff --git a/README.md b/README.md
index dfc2ef2..ce04617 100644
--- a/README.md
+++ b/README.md
@@ -1,5 +1,4 @@
-[![Build Status](https://travis-ci.org/erlware/relx.png?branch=master)](https://travis-ci.org/erlware/relx)
-[![CircleCI](https://circleci.com/gh/erlware/relx.svg?style=svg)](https://circleci.com/gh/erlware/relx)
+[![Build Status](https://api.cirrus-ci.com/github/erlware/relx.svg)](https://cirrus-ci.com/github/erlware/relx)
Relx
=======