Skip to content

Commit

Permalink
chore: disable bump-version on arm32 (electron#15994)
Browse files Browse the repository at this point in the history
  • Loading branch information
codebytere authored and Michelle Tilley committed Dec 10, 2018
1 parent 4b18a38 commit 163361e
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions spec/version-bump-spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ describe('bump-version script', () => {
const nightlyPattern = /[0-9.]*(-nightly.(\d{4})(\d{2})(\d{2}))$/g
const betaPattern = /[0-9.]*(-beta[0-9.]*)/g

before(function () {
if (process.platform === 'linux' && process.arch === 'arm') {
this.skip()
}
})

it('bumps to nightly from stable', async () => {
const version = 'v2.0.0'
const next = await nextVersion('nightly', version)
Expand Down

0 comments on commit 163361e

Please sign in to comment.