-
Notifications
You must be signed in to change notification settings - Fork 75
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Release 1.1.1
- Loading branch information
Showing
57 changed files
with
1,200 additions
and
398 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
name: Upload files to resources | ||
# upload scripts to release on push to master: WeCross latest download resources | ||
on: | ||
release: | ||
types: [prereleased] | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v1 | ||
- name: Upload upgrade_account_manager.sh | ||
uses: svenstaro/upload-release-action@v1-release | ||
with: | ||
repo_token: ${{ secrets.GITHUB_TOKEN }} | ||
file: scripts/upgrade_account_manager.sh | ||
asset_name: upgrade_account_manager.sh | ||
tag: ${{ github.ref }} | ||
overwrite: true | ||
|
||
- name: Upload upgrade_console.sh | ||
uses: svenstaro/upload-release-action@v1-release | ||
with: | ||
repo_token: ${{ secrets.GITHUB_TOKEN }} | ||
file: scripts/upgrade_console.sh | ||
asset_name: upgrade_console.sh | ||
tag: ${{ github.ref }} | ||
overwrite: true | ||
|
||
- name: Upload upgrade_wecross.sh | ||
uses: svenstaro/upload-release-action@v1-release | ||
with: | ||
repo_token: ${{ secrets.GITHUB_TOKEN }} | ||
file: scripts/upgrade_wecross.sh | ||
asset_name: upgrade_wecross.sh | ||
tag: ${{ github.ref }} | ||
overwrite: true |
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 |
---|---|---|
|
@@ -60,3 +60,5 @@ routers/ | |
null/ | ||
verifiers/ | ||
/src/test/resources/verifier.toml | ||
/src/test/resources/pages | ||
/src/test/resources/conf |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
#!/bin/bash | ||
|
||
SHELL_FOLDER="$(cd "$(dirname "$0")" && pwd)" | ||
|
||
LOG_ERROR() { | ||
echo -e "\033[31m[ERROR] $@\033[0m" | ||
} | ||
|
||
LOG_INFO() { | ||
echo -e "\033[32m[INFO] $@\033[0m" | ||
} | ||
|
||
if [ ! -e ${SHELL_FOLDER}/nodes/127.0.0.1/start_all.sh ] && [ ! -e ${SHELL_FOLDER}/nodes_gm/127.0.0.1/start_all.sh ]; then | ||
LOG_ERROR "FISCO-BCOS demo has not been built." | ||
LOG_INFO "Please use \"build.sh\" directly." | ||
exit 1 | ||
fi | ||
|
||
if [ -e ${SHELL_FOLDER}/nodes/127.0.0.1/start_all.sh ]; then | ||
bash ${SHELL_FOLDER}/nodes/127.0.0.1/start_all.sh | ||
fi | ||
|
||
if [ -e ${SHELL_FOLDER}/nodes_gm/127.0.0.1/start_all.sh ]; then | ||
bash ${SHELL_FOLDER}/nodes_gm/127.0.0.1/start_all.sh | ||
fi | ||
|
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,11 @@ | ||
#!/bin/bash | ||
|
||
SHELL_FOLDER="$(cd "$(dirname "$0")" && pwd)" | ||
|
||
if [ -e ${SHELL_FOLDER}/nodes/127.0.0.1/stop_all.sh ]; then | ||
bash ${SHELL_FOLDER}/nodes/127.0.0.1/stop_all.sh | ||
fi | ||
|
||
if [ -e ${SHELL_FOLDER}/nodes_gm/127.0.0.1/stop_all.sh ]; then | ||
bash ${SHELL_FOLDER}/nodes_gm/127.0.0.1/stop_all.sh | ||
fi |
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.