chore: disable bump-version on arm32 (#15994)
This commit is contained in:
parent
4b18a38e9f
commit
163361ee6a
1 changed files with 6 additions and 0 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue