Skip to content

Commit

Permalink
added parallel build option
Browse files Browse the repository at this point in the history
  • Loading branch information
warrensbox committed May 31, 2018
1 parent 2602a09 commit d20713e
Showing 1 changed file with 24 additions and 4 deletions.
28 changes: 24 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,25 @@ jobs:
root: build
paths: tfswitch

test:
test-ubuntu:
docker:
- image: "circleci/ruby:2.5-stretch"
- image: "circleci/ubuntu-server"

steps:
- run: ls

- attach_workspace:
at: build

test-alpine:
docker:
- image: "alpine:3.7"

steps:
- run: ls

- attach_workspace:
at: build

steps:
- run: ls
Expand Down Expand Up @@ -74,12 +90,16 @@ workflows:
build_and_test:
jobs:
- build
- test:
- test-ubuntu:
requires:
- build
- test-alpine:
requires:
- build
- develop-master:
requires:
- test
- test-ubuntu
- test-alpine
filters:
branches:
only:
Expand Down

0 comments on commit d20713e

Please sign in to comment.