chore: disable bump-version on arm32 (#15994)

This commit is contained in:
Shelley Vohr 2018-12-10 10:57:44 -08:00 committed by Michelle Tilley
parent 4b18a38e9f
commit 163361ee6a

View file

@ -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)