Skip to content
This repository has been archived by the owner on Nov 29, 2018. It is now read-only.

Commit

Permalink
Merge pull request #22 from michaelcontento/travis-mac-and-linux
Browse files Browse the repository at this point in the history
Travis mac and linux
  • Loading branch information
michaelcontento authored Apr 2, 2017
2 parents d9c2dc1 + aa88151 commit 2ca71d9
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 18 deletions.
25 changes: 19 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,23 @@
sudo: false # use Travis container based infrastructure
sudo: false

before_install:
- git clone https://github.com/sstephenson/bats.git /tmp/bats
- mkdir -p /tmp/local
- bash /tmp/bats/install.sh /tmp/local
- export PATH=$PATH:/tmp/local/bin
language: c

os:
- linux
- osx

before_script:
-
if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
brew install bats;
fi
-
if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
git clone https://github.com/sstephenson/bats.git /tmp/bats;
mkdir -p /tmp/local && /tmp/bats/install.sh /tmp/local;
export PATH=$PATH:/tmp/local/bin;
fi

script:
- bats tests/run.bats
- bats tests/installer.bats
12 changes: 2 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,19 +1,11 @@
[circleci-matrix][]
===================

- **Linux:** [![Linux Build](https://travis-ci.org/michaelcontento/circleci-matrix.svg)](https://travis-ci.org/michaelcontento/circleci-matrix)
- **OSX:** [![OSX Build](https://circleci.com/gh/michaelcontento/circleci-matrix/tree/master.svg?style=shield&circle-token=e8011fe1b683964966f04ecf39c170f65bd3f6dc)](https://circleci.com/gh/michaelcontento/circleci-matrix/tree/master)
- **TravisCI:** [![Linux Build](https://travis-ci.org/michaelcontento/circleci-matrix.svg)](https://travis-ci.org/michaelcontento/circleci-matrix) (Linux & OSX)
- **CircleCI:** [![OSX Build](https://circleci.com/gh/michaelcontento/circleci-matrix/tree/master.svg?style=shield&circle-token=e8011fe1b683964966f04ecf39c170f65bd3f6dc)](https://circleci.com/gh/michaelcontento/circleci-matrix/tree/master) (OSX)

Small utility to mirror [TravisCI][]'s [build matrix][] on [CircleCI][].

# No longer maintained

My focus / time shifted and this tool is no longer maintained.

If you want to step in and become the new owner - just ping me :smile:

Thank you for your patience and using this module in the first place!

## Features

- Simple one file distribution
Expand Down
2 changes: 0 additions & 2 deletions circle.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
machine:
xcode:
version: 7.1
environment:
XCODE_SCHEME: ignoreMe
XCODE_WORKSPACE: ignoreMe
Expand Down

0 comments on commit 2ca71d9

Please sign in to comment.