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

Commit

Permalink
run installer tests on circleci too
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelcontento committed Apr 3, 2017
1 parent 18f8766 commit f132b5d
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,13 @@ jobs:
- run:
name: Install dependencies
command: |
apk add --no-cache bash ca-certificates ncurses wget
wget -O bats-0.4.0.tar.gz https://github.com/sstephenson/bats/archive/v0.4.0.tar.gz
tar -xzf bats-0.4.0.tar.gz
cd bats-0.4.0
./install.sh /usr/local
apk add --no-cache curl bash
cd /tmp
curl -L https://github.com/sstephenson/bats/archive/v0.4.0.tar.gz | tar -xz
./bats-0.4.0/install.sh /usr/local
- run:
name: Run tests
name: Test circleci-matrix
command: bats tests/run.bats

- run:
name: Test installer
command: bats tests/installer.bats

0 comments on commit f132b5d

Please sign in to comment.