-
Notifications
You must be signed in to change notification settings - Fork 113
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1612 from iotaledger/develop
Merge v0.7.5 changes to master
- Loading branch information
Showing
191 changed files
with
12,579 additions
and
1,522 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,53 @@ | ||
name: deploy | ||
|
||
on: | ||
pull_request: | ||
branches: [develop, dev, master, main] | ||
push: | ||
branches: [develop, dev, master, main] | ||
|
||
jobs: | ||
checks: | ||
if: github.event_name != 'push' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v1 | ||
- uses: actions/setup-node@v1 | ||
with: | ||
node-version: '12.x' | ||
- name: Test Build | ||
run: | | ||
cd documentation | ||
if [ -e yarn.lock ]; then | ||
yarn install --frozen-lockfile | ||
elif [ -e package-lock.json ]; then | ||
npm ci | ||
else | ||
npm i | ||
fi | ||
npm run build | ||
gh-release: | ||
if: github.event_name != 'pull_request' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v1 | ||
- uses: actions/setup-node@v1 | ||
with: | ||
node-version: '12.x' | ||
- name: Build | ||
run: | | ||
cd documentation | ||
if [ -e yarn.lock ]; then | ||
yarn install --frozen-lockfile | ||
elif [ -e package-lock.json ]; then | ||
npm ci | ||
else | ||
npm i | ||
fi | ||
npm run build | ||
- name: Release to GitHub Pages | ||
uses: iotaledger/actions-gh-pages@v3 | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
publish_dir: ./documentation/build | ||
cname: goshimmer.docs.iota.org |
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 was deleted.
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
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 was deleted.
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
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,21 @@ | ||
--- | ||
## This playbook deploys new changes to the environment. | ||
|
||
- hosts: metrics | ||
vars: | ||
removeData: no | ||
roles: | ||
- metrics | ||
|
||
- hosts: supports | ||
roles: | ||
- role: goshimmer-node | ||
nodeType: entrynode | ||
- role: goshimmer-node | ||
nodeType: analysis-server | ||
|
||
- hosts: goshimmers | ||
vars: | ||
nodeType: goshimmer | ||
roles: | ||
- goshimmer-node |
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,34 @@ | ||
metrics: | ||
hosts: | ||
metrics-01.pre-devnet.shimmer.iota.cafe: | ||
|
||
supports: | ||
hosts: | ||
analysisentry-01.pre-devnet.shimmer.iota.cafe: | ||
entryNodeSeed: "{{ ANALYSISSENTRY_01_ENTRYNODE_SEED }}" | ||
|
||
goshimmers: | ||
hosts: | ||
bootstrap-01.pre-devnet.shimmer.iota.cafe: | ||
seed: "{{ BOOTSTRAP_01_SEED }}" | ||
bootstrap: true | ||
vanilla-01.pre-devnet.shimmer.iota.cafe: | ||
seed: "{{ VANILLA_01_SEED }}" | ||
drng-01.pre-devnet.shimmer.iota.cafe: | ||
seed: "{{ DRNG_01_SEED }}" | ||
drng-02.pre-devnet.shimmer.iota.cafe: | ||
seed: "{{ DRNG_02_SEED }}" | ||
drng-03.pre-devnet.shimmer.iota.cafe: | ||
seed: "{{ DRNG_03_SEED }}" | ||
drng-04.pre-devnet.shimmer.iota.cafe: | ||
seed: "{{ DRNG_04_SEED }}" | ||
drng-05.pre-devnet.shimmer.iota.cafe: | ||
seed: "{{ DRNG_05_SEED }}" | ||
faucet-01.pre-devnet.shimmer.iota.cafe: | ||
seed: "{{ FAUCET_01_SEED }}" | ||
faucet: true | ||
faucetSeed: "{{ FAUCET_01_FAUCET_SEED }}" | ||
|
||
drands: | ||
hosts: | ||
drand-01.pre-devnet.shimmer.iota.cafe: |
Oops, something went wrong.