mirror of
https://github.com/julia-actions/setup-julia.git
synced 2026-02-12 19:16:54 +08:00
Compare commits
1 Commits
test/mac-c
...
v1.6
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
ee66464cb7 |
2
.github/workflows/example-builds-nightly.yml
vendored
2
.github/workflows/example-builds-nightly.yml
vendored
@@ -13,7 +13,7 @@ jobs:
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
julia-version: [nightly, 1.8-nightly]
|
||||
julia-version: [nightly, 1.7-nightly]
|
||||
julia-arch: [x64, x86]
|
||||
os: [ubuntu-latest, macOS-latest, windows-latest]
|
||||
# 32-bit Julia binaries are not available on macOS
|
||||
|
||||
1
.github/workflows/example-builds.yml
vendored
1
.github/workflows/example-builds.yml
vendored
@@ -4,7 +4,6 @@ on:
|
||||
push:
|
||||
branches: ['main', 'master', 'releases/*']
|
||||
pull_request:
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
test:
|
||||
|
||||
@@ -38,11 +38,7 @@ This action sets up a Julia environment for use in actions by downloading a spec
|
||||
|
||||
# The architecture of the Julia binaries.
|
||||
#
|
||||
# Please note that installing aarch64 binaries only makes sense on self-hosted aarch64 runners.
|
||||
# We currently don't run test builds on that architecture, so we cannot guarantee that the input won't break randomly,
|
||||
# although there is no reason why it would.
|
||||
#
|
||||
# Supported values: x64 | x86 | aarch64 (untested)
|
||||
# Supported values: x64 | x86
|
||||
#
|
||||
# Default: x64
|
||||
arch: ''
|
||||
|
||||
@@ -19,7 +19,7 @@ outputs:
|
||||
julia-bindir:
|
||||
description: 'Path to the directory containing the Julia executable. Equivalent to JULIA_BINDIR: https://docs.julialang.org/en/v1/manual/environment-variables/#JULIA_BINDIR'
|
||||
runs:
|
||||
using: 'node16'
|
||||
using: 'node12'
|
||||
main: 'dist/index.js'
|
||||
branding:
|
||||
icon: 'download'
|
||||
|
||||
5
dist/index.js
vendored
5
dist/index.js
vendored
@@ -4268,8 +4268,7 @@ const osMap = {
|
||||
};
|
||||
const archMap = {
|
||||
'x86': 'i686',
|
||||
'x64': 'x86_64',
|
||||
'aarch64': 'aarch64'
|
||||
'x64': 'x86_64'
|
||||
};
|
||||
// Store information about the environment
|
||||
const osPlat = os.platform(); // possible values: win32 (Windows), linux (Linux), darwin (macOS)
|
||||
@@ -4439,8 +4438,6 @@ function installJulia(versionInfo, version, arch) {
|
||||
case 'darwin':
|
||||
yield exec.exec('hdiutil', ['attach', juliaDownloadPath]);
|
||||
yield exec.exec('/bin/bash', ['-c', `cp -a /Volumes/Julia-*/Julia-*.app/Contents/Resources/julia ${tempInstallDir}`]);
|
||||
// Unmount dmg file again to avoid issues on self-hosted runners
|
||||
yield exec.exec('hdiutil', ['unmount', juliaDownloadPath]);
|
||||
return path.join(tempInstallDir, 'julia');
|
||||
default:
|
||||
throw new Error(`Platform ${osPlat} is not supported`);
|
||||
|
||||
5
lib/installer.js
generated
5
lib/installer.js
generated
@@ -32,8 +32,7 @@ const osMap = {
|
||||
};
|
||||
const archMap = {
|
||||
'x86': 'i686',
|
||||
'x64': 'x86_64',
|
||||
'aarch64': 'aarch64'
|
||||
'x64': 'x86_64'
|
||||
};
|
||||
// Store information about the environment
|
||||
const osPlat = os.platform(); // possible values: win32 (Windows), linux (Linux), darwin (macOS)
|
||||
@@ -203,8 +202,6 @@ function installJulia(versionInfo, version, arch) {
|
||||
case 'darwin':
|
||||
yield exec.exec('hdiutil', ['attach', juliaDownloadPath]);
|
||||
yield exec.exec('/bin/bash', ['-c', `cp -a /Volumes/Julia-*/Julia-*.app/Contents/Resources/julia ${tempInstallDir}`]);
|
||||
// Unmount dmg file again to avoid issues on self-hosted runners
|
||||
yield exec.exec('hdiutil', ['unmount', juliaDownloadPath]);
|
||||
return path.join(tempInstallDir, 'julia');
|
||||
default:
|
||||
throw new Error(`Platform ${osPlat} is not supported`);
|
||||
|
||||
8526
package-lock.json
generated
8526
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "setup-julia",
|
||||
"version": "1.7.2",
|
||||
"version": "1.6.1",
|
||||
"private": true,
|
||||
"description": "setup Julia action",
|
||||
"main": "lib/setup-julia.js",
|
||||
|
||||
@@ -18,8 +18,7 @@ const osMap = {
|
||||
}
|
||||
const archMap = {
|
||||
'x86': 'i686',
|
||||
'x64': 'x86_64',
|
||||
'aarch64': 'aarch64'
|
||||
'x64': 'x86_64'
|
||||
}
|
||||
|
||||
// Store information about the environment
|
||||
@@ -203,10 +202,6 @@ export async function installJulia(versionInfo, version: string, arch: string):
|
||||
case 'darwin':
|
||||
await exec.exec('hdiutil', ['attach', juliaDownloadPath])
|
||||
await exec.exec('/bin/bash', ['-c', `cp -a /Volumes/Julia-*/Julia-*.app/Contents/Resources/julia ${tempInstallDir}`])
|
||||
|
||||
// Unmount dmg file again to avoid issues on self-hosted runners
|
||||
await exec.exec('hdiutil', ['unmount', juliaDownloadPath])
|
||||
|
||||
return path.join(tempInstallDir, 'julia')
|
||||
default:
|
||||
throw new Error(`Platform ${osPlat} is not supported`)
|
||||
|
||||
Reference in New Issue
Block a user