Fix the "default arch" code path with Julia nightly (and add a CI job for that code path) (#115)

This commit is contained in:
Dilum Aluthge
2022-06-25 03:26:39 -04:00
committed by GitHub
parent 40f50bc31f
commit 3a89763b86
11 changed files with 103 additions and 15 deletions

5
lib/installer.js generated
View File

@@ -32,11 +32,8 @@ const osMap = {
};
const archMap = {
'x86': 'i686',
'X86': 'i686',
'x64': 'x86_64',
'X64': 'x86_64',
'aarch64': 'aarch64',
'ARM64': 'aarch64'
'aarch64': 'aarch64'
};
// Store information about the environment
const osPlat = os.platform(); // possible values: win32 (Windows), linux (Linux), darwin (macOS)