-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/dev'
- Loading branch information
Showing
641 changed files
with
29,936 additions
and
5,550 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 |
---|---|---|
@@ -1,76 +1,49 @@ | ||
name: Nova Deply Workflow (with SDK build) | ||
name: Nova Deploy Workflow | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
TARGET_COMMIT: | ||
description: 'Target Commit Hash for the SDK' | ||
required: true | ||
default: '2.0' | ||
on: workflow_dispatch | ||
|
||
env: | ||
DEPLOY_ENV: nova | ||
|
||
jobs: | ||
build: | ||
set_env_vars: | ||
name: Set Environment Variables | ||
runs-on: ubuntu-latest | ||
outputs: | ||
version_tag: ${{ steps.set_version_tag.outputs.version_tag }} | ||
steps: | ||
- name: Checkout Repository | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
|
||
- name: Set up Node.js | ||
uses: actions/setup-node@v2 | ||
with: | ||
node-version: '16' | ||
|
||
- name: Install System Dependencies | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install -y python2 gcc-multilib g++-multilib build-essential libssl-dev rpm libsecret-1-dev software-properties-common apt-transport-https libudev-dev libusb-1.0-0-dev llvm-dev libclang-dev clang yarn | ||
echo 'LIBCLANG_PATH=/usr/lib/llvm-11/lib' >> $GITHUB_ENV | ||
echo 'DEBUG=electron-builder' >> $GITHUB_ENV | ||
echo 'PATH=/root/.cargo/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/lib/snap' >> $GITHUB_ENV | ||
- name: Install Rust and wasm-bindgen-cli | ||
run: | | ||
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y | ||
source $HOME/.cargo/env | ||
cargo install wasm-bindgen-cli | ||
rustup target add wasm32-unknown-unknown | ||
- name: Global Git Configuration | ||
run: git config --global --add safe.directory ${{ github.workspace }} | ||
|
||
- name: Yarn Add crypto-browserify | ||
run: yarn add crypto-browserify | ||
|
||
- name: Setup SDK | ||
run: | | ||
git clone -b 2.0 https://github.com/iotaledger/iota-sdk | ||
echo "Checking out nova-sdk commit ${{ github.event.inputs.TARGET_COMMIT }}" | ||
git checkout ${{ github.event.inputs.TARGET_COMMIT }} | ||
- name: Build Node.js Bindings | ||
run: | | ||
cd iota-sdk/bindings/nodejs | ||
echo "Renaming nodejs sdk (sdk-nova)" | ||
sed -i.bak '2s/.*/ \"name\": \"@iota\/sdk-nova\",/' package.json | ||
rm package.json.bak | ||
echo "Building nodejs bindings" | ||
yarn | ||
yarn build | ||
cd .. | ||
- name: Build WASM Bindings | ||
- name: Set up the version tag for docker images | ||
id: set_version_tag | ||
run: | | ||
cd wasm | ||
echo "Renaming wasm sdk (sdk-wasm-nova)" | ||
sed -i.bak '2s/.*/ \"name\": \"@iota\/sdk-wasm-nova\",/' package.json | ||
rm package.json.bak | ||
echo "Building wasm bindings" | ||
yarn | ||
yarn build | ||
cd ../.. | ||
env: | ||
TARGET_COMMIT: ${{ github.event.inputs.TARGET_COMMIT }} | ||
COMMIT_HASH=$(git rev-parse --short HEAD) | ||
echo "VERSION_TAG=$COMMIT_HASH" >> $GITHUB_OUTPUT | ||
use-reusable-workflow: | ||
strategy: | ||
matrix: | ||
directory: [api, client] | ||
name: Build Images | ||
needs: set_env_vars | ||
uses: ./.github/workflows/build-images.reusable.yaml | ||
with: | ||
directory: ${{ matrix.directory }} | ||
image_tags: | | ||
iotaledger/explorer-${{ matrix.directory }}:${{ needs.set_env_vars.outputs.version_tag }} | ||
secrets: inherit | ||
|
||
deploy_to_server: | ||
name: Deploy Production to Server | ||
needs: [set_env_vars, use-reusable-workflow] | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Add SSH key | ||
uses: webfactory/[email protected] | ||
with: | ||
ssh-private-key: ${{ secrets.UPDATER_SSH_PRIVATE_KEY }} | ||
|
||
- name: See what we got | ||
- name: Deploy to Server | ||
run: | | ||
find -ls | ||
ssh -o StrictHostKeyChecking=no updater@${{ secrets.EXPLORER_NOVA_GATEWAY }} "${{ env.DEPLOY_ENV }} ${{ needs.set_env_vars.outputs.version_tag }}" |
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 |
---|---|---|
|
@@ -19,4 +19,6 @@ config.staging.json | |
config.prod.json | ||
env.js | ||
|
||
iota-sdk | ||
|
||
**/.eslintcache |
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 |
---|---|---|
|
@@ -8,3 +8,4 @@ dist/* | |
node_modules/* | ||
|
||
tsconfig.json | ||
package-lock.json |
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 |
---|---|---|
|
@@ -34,8 +34,9 @@ | |
"@iota/identity-wasm-stardust": "npm:@iota/identity-wasm@^1.1.0", | ||
"@iota/iota.js-chrysalis": "npm:@iota/iota.js@^1.8.6", | ||
"@iota/mqtt.js": "^1.8.6", | ||
"@iota/sdk": "1.1.1", | ||
"@iota/sdk-wasm": "^1.0.4", | ||
"@iota/sdk-stardust": "npm:@iota/[email protected]", | ||
"@iota/sdk-nova": "npm:@iota/[email protected]", | ||
"@iota/sdk-wasm-stardust": "npm:@iota/[email protected]", | ||
"@iota/util.js": "^1.8.6", | ||
"@iota/validators": "^1.0.0-beta.30", | ||
"@types/node-cron": "^3.0.2", | ||
|
Oops, something went wrong.