Skip to content
This repository has been archived by the owner on Jul 24, 2024. It is now read-only.

Commit

Permalink
Test against arm64 on Travis
Browse files Browse the repository at this point in the history
  • Loading branch information
OskarPersson committed Nov 12, 2019
1 parent fbc9ff5 commit 3cfa236
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@ language: node_js

compiler: gcc

arch:
- amd64
- arm64

env:
global:
- SKIP_SASS_BINARY_DOWNLOAD_FOR_CI=true
Expand Down
5 changes: 5 additions & 0 deletions lib/extensions.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,11 @@ function getHumanArchitecture(arch) {
case 'ia32': return '32-bit';
case 'x86': return '32-bit';
case 'x64': return '64-bit';
case 'armv7l': return '32-bit, ARM';
case 'armv7hf': return '32-bit, ARM';
case 'armv8': return '64-bit, ARM';
case 'aarch64': return '64-bit, ARM';
case 'arm64': return '64-bit, ARM';
default: return false;
}
}
Expand Down

0 comments on commit 3cfa236

Please sign in to comment.