Include arm64 alias for aarch64 (#134)

This should fix arch lookup in Apple M-series.
This commit is contained in:
Sergio Sánchez Ramírez
2023-02-09 12:49:10 +01:00
committed by GitHub
parent 2f270f0b37
commit 294135b6de
3 changed files with 5 additions and 3 deletions

3
lib/setup-julia.js generated
View File

@@ -27,7 +27,8 @@ const archSynonyms = {
'x64': 'x64', 'x64': 'x64',
'X64': 'x64', 'X64': 'x64',
'aarch64': 'aarch64', 'aarch64': 'aarch64',
'ARM64': 'aarch64' 'ARM64': 'aarch64',
'arm64': 'aarch64'
}; };
function run() { function run() {
return __awaiter(this, void 0, void 0, function* () { return __awaiter(this, void 0, void 0, function* () {

2
package-lock.json generated
View File

@@ -6,7 +6,7 @@
"packages": { "packages": {
"": { "": {
"name": "setup-julia", "name": "setup-julia",
"version": "1.8.3", "version": "1.9.0",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@actions/core": "^1.10.0", "@actions/core": "^1.10.0",

View File

@@ -14,7 +14,8 @@ const archSynonyms = {
'x64': 'x64', 'x64': 'x64',
'X64': 'x64', 'X64': 'x64',
'aarch64': 'aarch64', 'aarch64': 'aarch64',
'ARM64': 'aarch64' 'ARM64': 'aarch64',
'arm64': 'aarch64'
} }
async function run() { async function run() {