Browse Source

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

Shelley Vohr 6 years ago
parent
commit
163361ee6a
1 changed files with 6 additions and 0 deletions
  1. 6 0
      spec/version-bump-spec.js

+ 6 - 0
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)