Skip to content

Commit

Permalink
fix(circleci): separate builds
Browse files Browse the repository at this point in the history
  • Loading branch information
shanejonas committed Jun 15, 2019
1 parent 355ea0a commit 4b10872
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .circleci/config.yml
Expand Up @@ -26,6 +26,7 @@ defaults: &defaults
working_directory: ~/project

jobs:

test:
<<: *defaults
docker:
Expand All @@ -38,6 +39,7 @@ jobs:
- run: npm test
- run: ./node_modules/.bin/codecov
- save_cache: *save-deps-cache

windowsbuild:
<<: *defaults
docker:
Expand All @@ -46,6 +48,7 @@ jobs:
- checkout
- run: npm install
- run: npm run electron:build

macbuild:
<<: *defaults
macos:
Expand All @@ -54,6 +57,7 @@ jobs:
- checkout
- run: npm install
- run: npm run electron:build

linuxbuild:
<<: *defaults
docker:
Expand All @@ -62,6 +66,7 @@ jobs:
- checkout
- run: npm install
- run: npm run electron:build

release:
steps:
- run: echo "hello world"
Expand All @@ -72,9 +77,6 @@ workflows:
jobs:
- test:
filters: *filter-only-semantic-pr
- build:
filters: *filter-only-semantic-pr

release:
jobs:
- test:
Expand Down

0 comments on commit 4b10872

Please sign in to comment.