Skip to content

Commit

Permalink
fix: allow failures for canary builds (#159)
Browse files Browse the repository at this point in the history
  • Loading branch information
evilebottnawi authored Dec 22, 2018
1 parent d9d6aca commit 96d1d3c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion templates/.circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ canary_tests: &canary_tests
command: npm i --no-save webpack@next
- run:
name: Run Test.
command: if [[ $(compver --name webpack --gte next --lt latest) < 1 ]] ; then printf "Next is older than Latest - Skipping Canary Suite"; else npm run ci:test; fi
command: if [[ $(compver --name webpack --gte next --lt latest) < 1 ]] ; then printf "Next is older than Latest - Skipping Canary Suite"; else npm run ci:test || true; fi

version: 2
jobs:
Expand Down
4 changes: 4 additions & 0 deletions templates/appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,10 @@ environment:
build: 'off'
matrix:
fast_finish: true
allow_failures:
- nodejs_version: '8'
webpack_version: next
job_part: test
install:
- ps: Install-Product node $env:nodejs_version x64
- npm i -g npm@latest
Expand Down

0 comments on commit 96d1d3c

Please sign in to comment.