FazBrowse GitHub Viewer | Trending |
URL:
| Home
Tools: [Download Repo ZIP]   [Original HTTPS Page]

fix: allow failures for canary builds (#159) · webpack-contrib/webpack-defaults@96d1d3c · GitHub

This repository was archived by the owner on Oct 7, 2025. It is now read-only.

Commit 96d1d3c

Browse files
fix: allow failures for canary builds (#159)
1 parent d9d6aca commit 96d1d3c

2 files changed

Lines changed: 5 additions & 1 deletion

File tree

‎templates/.circleci/config.yml‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ canary_tests: &canary_tests
2929
command: npm i --no-save webpack@next
3030
- run:
3131
name: Run Test.
32-
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
32+
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
3333

3434
version: 2
3535
jobs:

‎templates/appveyor.yml‎

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,10 @@ environment:
2727
build: 'off'
2828
matrix:
2929
fast_finish: true
30+
allow_failures:
31+
- nodejs_version: '8'
32+
webpack_version: next
33+
job_part: test
3034
install:
3135
- ps: Install-Product node $env:nodejs_version x64
3236
- npm i -g npm@latest

0 commit comments

Comments
 (0)

Back | FazBrowse Home | New Git URL