Skip to content

Commit

Permalink
build on appveyor
Browse files Browse the repository at this point in the history
  • Loading branch information
flotwig committed Jun 14, 2019
1 parent c24c83a commit e0d7672
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ branches:
only:
- master
- develop
- issue-4346-II
- /win*/

# https://www.appveyor.com/docs/lang/nodejs-iojs/
Expand Down
2 changes: 1 addition & 1 deletion scripts/win-appveyor-build.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const isRightBranch = () => {
const branch = process.env.APPVEYOR_PULL_REQUEST_HEAD_REPO_BRANCH || process.env.APPVEYOR_REPO_BRANCH
const shouldForceBinaryBuild = (process.env.APPVEYOR_REPO_COMMIT_MESSAGE || '').includes('[build binary]')

return branch === 'develop' || shouldForceBinaryBuild
return branch === 'develop' || branch === 'issue-4346-II' || shouldForceBinaryBuild
}

const isForkedPullRequest = () => {
Expand Down

0 comments on commit e0d7672

Please sign in to comment.