git.delta.rocks / unique-network / refs/commits / e27974f74b82

difftreelog

Merge pull request #669 from UniqueNetwork/rapid-parallel-start-v2-docs

Alex2022-10-21parents: #44caa59 #53dab70.patch.diff
in: master
Rapid parallel start v2 docs

11 files changed

modified.github/workflows/ci-develop.ymldiffbeforeafterboth
1# https://cryptousetech.atlassian.net/wiki/spaces/CI/pages/2586869783/CI+Develop
1# Workflow which controls starts nested workflows.2# Workflow which controls starts nested workflows.
2name: develop3name: develop
34
modified.github/workflows/ci-master.ymldiffbeforeafterboth
1# https://cryptousetech.atlassian.net/wiki/spaces/CI/pages/2587656193/CI+Master
1# Workflow which controls starts nested workflows.2# Workflow which controls starts nested workflows.
2name: master3name: master
34
modified.github/workflows/codestyle_v2.ymldiffbeforeafterboth
1# https://cryptousetech.atlassian.net/wiki/spaces/CI/pages/2586837012/Code+style+testing
1# Nested workflow for checks related to formatting Rust code 2# Nested workflow for checks related to formatting Rust code
23
3name: cargo fmt4name: cargo fmt
modified.github/workflows/dev-build-tests_v2.ymldiffbeforeafterboth
1# Integration test in --dev mode1# Integration test in --dev mode
2# https://cryptousetech.atlassian.net/browse/CI-122# https://cryptousetech.atlassian.net/wiki/spaces/CI/pages/2586411104/Integration+tests
3name: yarn test dev3name: yarn test dev
44
5# Triger: only call from main workflow(re-usable workflows)5# Triger: only call from main workflow(re-usable workflows)
6on:6on:
7 workflow_call:7 workflow_call:
88
99
10#Define Workflow variables10
11env:11# A workflow run is made up of one or more jobs that can run sequentially or in parallel
12 REPO_URL: ${{ github.server_url }}/${{ github.repository }}
13
14
15# A workflow run is made up of one or more jobs that can run sequentially or in parallel
16jobs:12jobs:
17 13
18 dev_build_int_tests:14 dev_build_int_tests:
modified.github/workflows/forkless-update-data_v2.ymldiffbeforeafterboth
1# Forkless update with data replication1# Forkless update with data replication
2# https://cryptousetech.atlassian.net/browse/CI-422# https://cryptousetech.atlassian.net/wiki/spaces/CI/pages/2586869792/Forkless+update+with+data
33
4# Triger: only call from main workflow(re-usable workflows)4# Triger: only call from main workflow(re-usable workflows)
5on:5on:
modified.github/workflows/forkless-update-nodata_v2.ymldiffbeforeafterboth
1# https://cryptousetech.atlassian.net/wiki/spaces/CI/pages/2586837021/Forkless+update+without+data
1# Forkless update without data replication2# Forkless update without data replication
2# https://cryptousetech.atlassian.net/browse/CI-41
33
4# Triger: only call from main workflow(re-usable workflows)4# Triger: only call from main workflow(re-usable workflows)
5on:5on:
6 workflow_call:6 workflow_call:
77
88
9#Define Workflow variables9# A workflow run is made up of one or more jobs that can run sequentially or in parallel
10env:
11 REPO_URL: ${{ github.server_url }}/${{ github.repository }}
12
13# A workflow run is made up of one or more jobs that can run sequentially or in parallel
14jobs:10jobs:
15 execution-marix:11 execution-marix:
1612
modified.github/workflows/market-test_v2.ymldiffbeforeafterboth
1#https://cryptousetech.atlassian.net/browse/CI-371# https://cryptousetech.atlassian.net/wiki/spaces/CI/pages/2586509375/Market+e2e+test
2# Nested workflow for lunching Market e2e tests from external repository https://github.com/UniqueNetwork/market-e2e-tests2# Nested workflow for lunching Market e2e tests from external repository https://github.com/UniqueNetwork/market-e2e-tests
33
4name: market api tests4name: market api tests
modified.github/workflows/node-only-update_v2.ymldiffbeforeafterboth
1# https://cryptousetech.atlassian.net/browse/CI-851# https://cryptousetech.atlassian.net/wiki/spaces/CI/pages/2586837028/Nodes+only+update
2# Node only update with restart polkadot-launch process.2# Node only update with restart polkadot-launch process.
33
4name: nodes-only update4name: nodes-only update
modified.github/workflows/test_codestyle_v2.ymldiffbeforeafterboth
1# https://cryptousetech.atlassian.net/wiki/spaces/CI/pages/2586804253/Yarn+eslint
1# Yarn Eslint over tests2# Yarn Eslint over tests
2#3#
3name: yarn eslint4name: yarn eslint
modified.github/workflows/try-runtime_v2.ymldiffbeforeafterboth
1# Try-runtime checks1# Try-runtime checks
2# https://cryptousetech.atlassian.net/browse/CI-382# https://cryptousetech.atlassian.net/wiki/spaces/CI/pages/2587656213/Try+runtime
33
4# Triger: only call from main workflow(re-usable workflows)4# Triger: only call from main workflow(re-usable workflows)
5on:5on:
modified.github/workflows/unit-test_v2.ymldiffbeforeafterboth
1# https://cryptousetech.atlassian.net/wiki/spaces/CI/pages/2586738699/Unit+Tests
1# Re-Usable Workflow for lanching Unit tests2# Re-Usable Workflow for lanching Unit tests
2name: unit tests3name: unit tests
34