-
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixup arch detection in `examples/run.sh` to handle Git for Windows (and thus bash, etc.) being x86-64 still: use PowerShell to determine the true arch.
- Loading branch information
Showing
11 changed files
with
247 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ members = [ | |
|
||
[package] | ||
name = "scie-jump" | ||
version = "1.1.1" | ||
version = "1.2.0" | ||
description = "The self contained interpreted executable launcher." | ||
authors = [ | ||
"John Sirois <[email protected]>", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
{ | ||
"scie": { | ||
"lift": { | ||
"name": "java", | ||
"files": [ | ||
{ | ||
"name": "openjdk-19.0.1_windows-x64_bin.zip", | ||
"key": "jdk", | ||
"size": 194441800, | ||
"hash": "adb1a33c07b45c39b926bdeeadf800f701be9c3d04e0deb543069e5f09856185", | ||
"type": "zip" | ||
}, | ||
{ | ||
"name": "cowsay-1.1.0.jar", | ||
"key": "cowsay.jar", | ||
"size": 1724250, | ||
"hash": "212ee64546eb8b5074572fed4107d850eb90bc462aa3099c0ac8ea63fdca7811", | ||
"type": "blob" | ||
} | ||
], | ||
"boot": { | ||
"commands": { | ||
"": { | ||
"exe": "{jdk}/jdk-19.0.1/bin/java", | ||
"args": [ | ||
"-jar", | ||
"{cowsay.jar}" | ||
], | ||
"env": { | ||
"=JAVA_HOME": "{jdk}/jdk-19.0.1", | ||
"=PATH": "{jdk}/jdk-19.0.1/bin:{scie.env.PATH}" | ||
} | ||
} | ||
} | ||
} | ||
}, | ||
"jump": null | ||
}, | ||
"fetch": [ | ||
"https://download.java.net/java/GA/jdk19.0.1/afdd2e245b014143b62ccb916125e3ce/10/GPL/openjdk-19.0.1_windows-x64_bin.zip" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
{ | ||
"scie": { | ||
"lift": { | ||
"name": "coursier", | ||
"boot": { | ||
"commands": { | ||
"": { | ||
"env": { | ||
"=JAVA_HOME": "{jdk}/jdk11.0.17_8", | ||
"=PATH": "{jdk}/jdk11.0.17_8/bin:{scie.env.PATH}" | ||
}, | ||
"exe": "{jdk}/jdk11.0.17_8/bin/java", | ||
"args": [ | ||
"-jar", | ||
"{coursier.jar}" | ||
] | ||
} | ||
} | ||
}, | ||
"files": [ | ||
{ | ||
"name": "amazon-corretto-11.0.17.8.1-windows-x64-jdk.zip", | ||
"key": "jdk" | ||
}, | ||
{ | ||
"name": "coursier.jar" | ||
} | ||
] | ||
} | ||
}, | ||
"fetch": [ | ||
"https://corretto.aws/downloads/resources/11.0.17.8.1/amazon-corretto-11.0.17.8.1-windows-x64-jdk.zip" | ||
], | ||
"custom": { | ||
"arbitrary": 3 | ||
}, | ||
"more": ["and", "more"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
{ | ||
"scie": { | ||
"lift": { | ||
"name": "cowsay", | ||
"load_dotenv": true, | ||
"files": [ | ||
{ | ||
"name": "get.sh" | ||
}, | ||
{ | ||
"name": "cowsay-1.1.0.jar", | ||
"key": "cowsay.jar", | ||
"size": 1724250, | ||
"hash": "212ee64546eb8b5074572fed4107d850eb90bc462aa3099c0ac8ea63fdca7811", | ||
"type": "blob", | ||
"source": "get" | ||
}, | ||
{ | ||
"name": "openjdk-19.0.1_windows-x64_bin.zip", | ||
"key": "jdk", | ||
"size": 194441800, | ||
"hash": "adb1a33c07b45c39b926bdeeadf800f701be9c3d04e0deb543069e5f09856185", | ||
"type": "zip", | ||
"source": "get" | ||
} | ||
], | ||
"boot": { | ||
"commands": { | ||
"": { | ||
"exe": "{jdk}/jdk-19.0.1/bin/java", | ||
"args": [ | ||
"-jar", | ||
"{cowsay.jar}" | ||
], | ||
"env": { | ||
"=JAVA_HOME": "{jdk}/jdk-19.0.1", | ||
"=PATH": "{jdk}/jdk-19.0.1/bin:{scie.env.PATH}" | ||
} | ||
} | ||
}, | ||
"bindings": { | ||
"get": { | ||
"exe": "C:\\Program Files\\Git\\usr\\bin\\bash", | ||
"args": [ | ||
"{get.sh}", | ||
"{scie.env.GET_CONFIG={scie.lift}}" | ||
] | ||
} | ||
} | ||
} | ||
} | ||
}, | ||
"get": { | ||
"openjdk-19.0.1_windows-x64_bin.zip": "https://download.java.net/java/GA/jdk19.0.1/afdd2e245b014143b62ccb916125e3ce/10/GPL/openjdk-19.0.1_windows-x64_bin.zip", | ||
"cowsay-1.1.0.jar": "https://repo1.maven.org/maven2/com/github/ricksbrown/cowsay/1.1.0/cowsay-1.1.0.jar" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
{ | ||
"scie": { | ||
"lift": { | ||
"name": "node.js", | ||
"boot": { | ||
"commands": { | ||
"node": { | ||
"env": { | ||
"=PATH": "{node}/node-v18.12.0-win-x64:{scie.env.PATH}" | ||
}, | ||
"exe": "{node}/node-v18.12.0-win-x64/node.exe" | ||
}, | ||
"npm": { | ||
"env": { | ||
"=PATH": "{node}/node-v18.12.0-win-x64/bin:{scie.env.PATH}" | ||
}, | ||
"exe": "{node}/node-v18.12.0-win-x64/npm.cmd" | ||
} | ||
} | ||
}, | ||
"files": [ | ||
{ | ||
"name": "node-v18.12.0-win-x64.zip", | ||
"key": "node" | ||
} | ||
] | ||
} | ||
}, | ||
"fetch": [ | ||
"https://nodejs.org/dist/v18.12.0/node-v18.12.0-win-x64.zip" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
{ | ||
"scie": { | ||
"lift": { | ||
"name": "cowsay", | ||
"files": [ | ||
{ | ||
"name": "ptex-windows-x86_64.exe", | ||
"key": "ptex" | ||
}, | ||
{ | ||
"name": "cowsay-1.1.0.jar", | ||
"key": "cowsay.jar", | ||
"size": 1724250, | ||
"hash": "212ee64546eb8b5074572fed4107d850eb90bc462aa3099c0ac8ea63fdca7811", | ||
"type": "blob", | ||
"source": "ptex-fetch" | ||
}, | ||
{ | ||
"name": "openjdk-19.0.1_windows-x64_bin.zip", | ||
"key": "jdk", | ||
"size": 194441800, | ||
"hash": "adb1a33c07b45c39b926bdeeadf800f701be9c3d04e0deb543069e5f09856185", | ||
"type": "zip", | ||
"source": "ptex-fetch" | ||
} | ||
], | ||
"boot": { | ||
"commands": { | ||
"": { | ||
"exe": "{jdk}/jdk-19.0.1/bin/java", | ||
"args": [ | ||
"-jar", | ||
"{cowsay.jar}" | ||
], | ||
"env": { | ||
"=JAVA_HOME": "{jdk}/jdk-19.0.1", | ||
"=PATH": "{jdk}/jdk-19.0.1/bin:{scie.env.PATH}" | ||
} | ||
} | ||
}, | ||
"bindings": { | ||
"ptex-fetch": { | ||
"exe": "{ptex}", | ||
"args": [ | ||
"{scie.lift}" | ||
] | ||
} | ||
} | ||
} | ||
} | ||
}, | ||
"fetch": [ | ||
"https://github.com/a-scie/ptex/releases/download/v0.2.0/ptex-windows-x86_64.exe" | ||
], | ||
"ptex": { | ||
"openjdk-19.0.1_windows-x64_bin.zip": "https://download.java.net/java/GA/jdk19.0.1/afdd2e245b014143b62ccb916125e3ce/10/GPL/openjdk-19.0.1_windows-x64_bin.zip", | ||
"cowsay-1.1.0.jar": "https://repo1.maven.org/maven2/com/github/ricksbrown/cowsay/1.1.0/cowsay-1.1.0.jar" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters