From 163361ee6a58ceca4717178fd0b677c5b7aae47c Mon Sep 17 00:00:00 2001 From: Shelley Vohr Date: Mon, 10 Dec 2018 10:57:44 -0800 Subject: [PATCH] chore: disable bump-version on arm32 (#15994) --- spec/version-bump-spec.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/spec/version-bump-spec.js b/spec/version-bump-spec.js index aae96e7a07fb..07659493cd9d 100644 --- a/spec/version-bump-spec.js +++ b/spec/version-bump-spec.js @@ -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)