mirror of
https://github.com/julia-actions/setup-julia.git
synced 2026-02-11 18:46:53 +08:00
arch input: accept x86_64 as a synonym for x64 (#264)
* `arch` input: accept `x86_64` as a synonym for `x64` * npm ci && npm run build && npm run pack
This commit is contained in:
1
dist/index.js
vendored
1
dist/index.js
vendored
@@ -538,6 +538,7 @@ const installer = __importStar(__nccwpck_require__(1480));
|
||||
const archSynonyms = {
|
||||
'x86': 'x86',
|
||||
'x64': 'x64',
|
||||
'x86_64': 'x64',
|
||||
'aarch64': 'aarch64',
|
||||
'arm64': 'aarch64'
|
||||
};
|
||||
|
||||
1
lib/setup-julia.js
generated
1
lib/setup-julia.js
generated
@@ -46,6 +46,7 @@ const installer = __importStar(require("./installer"));
|
||||
const archSynonyms = {
|
||||
'x86': 'x86',
|
||||
'x64': 'x64',
|
||||
'x86_64': 'x64',
|
||||
'aarch64': 'aarch64',
|
||||
'arm64': 'aarch64'
|
||||
};
|
||||
|
||||
@@ -15,6 +15,7 @@ import * as installer from './installer'
|
||||
const archSynonyms = {
|
||||
'x86': 'x86',
|
||||
'x64': 'x64',
|
||||
'x86_64': 'x64',
|
||||
'aarch64': 'aarch64',
|
||||
'arm64': 'aarch64'
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user