forked from dashpay/platform
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'v1.0-dev' into fix/select-random-identities-for-strateg…
…y-documents
- Loading branch information
Showing
61 changed files
with
1,778 additions
and
468 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
--- | ||
name: "Setup Javy" | ||
description: "Setup Javy binaries" | ||
inputs: | ||
version: | ||
description: Javy version to use | ||
required: false | ||
default: "1.4.0" | ||
runs: | ||
using: composite | ||
steps: | ||
- name: Install Javy | ||
shell: bash | ||
run: | | ||
set -e | ||
case "${{ runner.arch }}" in | ||
"ARM64") | ||
JAVY_ARCH="arm-linux" | ||
;; | ||
"X64") | ||
JAVY_ARCH="x86_64-linux" | ||
;; | ||
*) | ||
echo "Unsupported architecture: ${{ runner.arch }}" | ||
exit 1 | ||
;; | ||
esac | ||
curl -Ls "https://github.com/bytecodealliance/javy/releases/download/v${{ inputs.version }}/javy-${JAVY_ARCH}-v${{ inputs.version }}.gz" | gunzip > javy | ||
chmod +x javy | ||
sudo mv javy /usr/local/bin/javy | ||
- name: Verify Javy installation | ||
shell: bash | ||
run: javy --version |
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
Oops, something went wrong.