Allow CI building on arm64 hardware

This commit is contained in:
John Kleinschmidt 2018-02-27 12:08:27 -05:00
parent 569b87ff83
commit 134d3f98c9
4 changed files with 107 additions and 2 deletions

View file

@ -33,7 +33,8 @@ describe('modules support', () => {
// https://github.com/electron/electron/issues/11274
xdescribe('ffi', () => {
before(function () {
if (!nativeModulesEnabled || process.platform === 'win32') {
if (!nativeModulesEnabled || process.platform === 'win32' ||
process.arch === 'arm64') {
this.skip()
}
})