mirror of
https://github.com/julia-actions/setup-julia.git
synced 2026-02-13 03:26:53 +08:00
Compare commits
3 Commits
SaschaMann
...
v1.7.0
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
e7e85c4fe5 | ||
|
|
800ff44572 | ||
|
|
6966335537 |
5
.github/workflows/example-builds.yml
vendored
5
.github/workflows/example-builds.yml
vendored
@@ -29,16 +29,11 @@ jobs:
|
||||
npm run build
|
||||
npm run pack
|
||||
|
||||
- run: mkdir -p ${{ github.workspace }}/dilumtestcache # TODO: delete this line
|
||||
- name: "Set up Julia"
|
||||
id: setup-julia
|
||||
uses: ./
|
||||
env:
|
||||
RUNNER_TOOL_CACHE: ${{ github.workspace }}/dilumtestcache
|
||||
with:
|
||||
version: ${{ matrix.julia-version }}
|
||||
arch: ${{ matrix.julia-arch }}
|
||||
- run: which julia # TODO: delete this line
|
||||
- run: which -a julia # TODO: delete this line
|
||||
- run: julia --version
|
||||
- run: julia --compile=min -O0 -e 'import InteractiveUtils; InteractiveUtils.versioninfo()'
|
||||
|
||||
2
.gitignore
vendored
2
.gitignore
vendored
@@ -1,3 +1,3 @@
|
||||
node_modules/
|
||||
__tests__/runner/*
|
||||
dist/
|
||||
!dist/
|
||||
|
||||
@@ -38,7 +38,11 @@ This action sets up a Julia environment for use in actions by downloading a spec
|
||||
|
||||
# The architecture of the Julia binaries.
|
||||
#
|
||||
# Supported values: x64 | x86
|
||||
# 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)
|
||||
#
|
||||
# Default: x64
|
||||
arch: ''
|
||||
|
||||
5204
dist/index.js
vendored
Normal file
5204
dist/index.js
vendored
Normal file
File diff suppressed because it is too large
Load Diff
BIN
dist/unzip
vendored
Normal file
BIN
dist/unzip
vendored
Normal file
Binary file not shown.
3
lib/installer.js
generated
3
lib/installer.js
generated
@@ -32,7 +32,8 @@ const osMap = {
|
||||
};
|
||||
const archMap = {
|
||||
'x86': 'i686',
|
||||
'x64': 'x86_64'
|
||||
'x64': 'x86_64',
|
||||
'aarch64': 'aarch64'
|
||||
};
|
||||
// Store information about the environment
|
||||
const osPlat = os.platform(); // possible values: win32 (Windows), linux (Linux), darwin (macOS)
|
||||
|
||||
5
package-lock.json
generated
5
package-lock.json
generated
@@ -1,11 +1,12 @@
|
||||
{
|
||||
"name": "setup-julia",
|
||||
"version": "1.6.1",
|
||||
"version": "1.7.0",
|
||||
"lockfileVersion": 2,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"version": "1.6.1",
|
||||
"name": "setup-julia",
|
||||
"version": "1.7.0",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@actions/core": "^1.2.6",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "setup-julia",
|
||||
"version": "1.6.1",
|
||||
"version": "1.7.0",
|
||||
"private": true,
|
||||
"description": "setup Julia action",
|
||||
"main": "lib/setup-julia.js",
|
||||
|
||||
@@ -18,7 +18,8 @@ const osMap = {
|
||||
}
|
||||
const archMap = {
|
||||
'x86': 'i686',
|
||||
'x64': 'x86_64'
|
||||
'x64': 'x86_64',
|
||||
'aarch64': 'aarch64'
|
||||
}
|
||||
|
||||
// Store information about the environment
|
||||
|
||||
Reference in New Issue
Block a user