difftreelog
Merge pull request #669 from UniqueNetwork/rapid-parallel-start-v2-docs
in: master
Rapid parallel start v2 docs
11 files changed
.github/workflows/ci-develop.ymldiffbeforeafterboth--- a/.github/workflows/ci-develop.yml
+++ b/.github/workflows/ci-develop.yml
@@ -1,3 +1,4 @@
+# https://cryptousetech.atlassian.net/wiki/spaces/CI/pages/2586869783/CI+Develop
# Workflow which controls starts nested workflows.
name: develop
.github/workflows/ci-master.ymldiffbeforeafterboth--- a/.github/workflows/ci-master.yml
+++ b/.github/workflows/ci-master.yml
@@ -1,3 +1,4 @@
+# https://cryptousetech.atlassian.net/wiki/spaces/CI/pages/2587656193/CI+Master
# Workflow which controls starts nested workflows.
name: master
.github/workflows/codestyle_v2.ymldiffbeforeafterboth--- a/.github/workflows/codestyle_v2.yml
+++ b/.github/workflows/codestyle_v2.yml
@@ -1,3 +1,4 @@
+# https://cryptousetech.atlassian.net/wiki/spaces/CI/pages/2586837012/Code+style+testing
# Nested workflow for checks related to formatting Rust code
name: cargo fmt
.github/workflows/dev-build-tests_v2.ymldiffbeforeafterboth--- a/.github/workflows/dev-build-tests_v2.yml
+++ b/.github/workflows/dev-build-tests_v2.yml
@@ -1,15 +1,11 @@
# Integration test in --dev mode
-# https://cryptousetech.atlassian.net/browse/CI-12
+# https://cryptousetech.atlassian.net/wiki/spaces/CI/pages/2586411104/Integration+tests
name: yarn test dev
# Triger: only call from main workflow(re-usable workflows)
on:
workflow_call:
-
-#Define Workflow variables
-env:
- REPO_URL: ${{ github.server_url }}/${{ github.repository }}
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
.github/workflows/forkless-update-data_v2.ymldiffbeforeafterboth--- a/.github/workflows/forkless-update-data_v2.yml
+++ b/.github/workflows/forkless-update-data_v2.yml
@@ -1,5 +1,5 @@
# Forkless update with data replication
-# https://cryptousetech.atlassian.net/browse/CI-42
+# https://cryptousetech.atlassian.net/wiki/spaces/CI/pages/2586869792/Forkless+update+with+data
# Triger: only call from main workflow(re-usable workflows)
on:
.github/workflows/forkless-update-nodata_v2.ymldiffbeforeafterboth--- a/.github/workflows/forkless-update-nodata_v2.yml
+++ b/.github/workflows/forkless-update-nodata_v2.yml
@@ -1,14 +1,10 @@
+# https://cryptousetech.atlassian.net/wiki/spaces/CI/pages/2586837021/Forkless+update+without+data
# Forkless update without data replication
-# https://cryptousetech.atlassian.net/browse/CI-41
# Triger: only call from main workflow(re-usable workflows)
on:
workflow_call:
-
-#Define Workflow variables
-env:
- REPO_URL: ${{ github.server_url }}/${{ github.repository }}
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
.github/workflows/market-test_v2.ymldiffbeforeafterboth--- a/.github/workflows/market-test_v2.yml
+++ b/.github/workflows/market-test_v2.yml
@@ -1,4 +1,4 @@
-#https://cryptousetech.atlassian.net/browse/CI-37
+# https://cryptousetech.atlassian.net/wiki/spaces/CI/pages/2586509375/Market+e2e+test
# Nested workflow for lunching Market e2e tests from external repository https://github.com/UniqueNetwork/market-e2e-tests
name: market api tests
.github/workflows/node-only-update_v2.ymldiffbeforeafterboth--- a/.github/workflows/node-only-update_v2.yml
+++ b/.github/workflows/node-only-update_v2.yml
@@ -1,4 +1,4 @@
-# https://cryptousetech.atlassian.net/browse/CI-85
+# https://cryptousetech.atlassian.net/wiki/spaces/CI/pages/2586837028/Nodes+only+update
# Node only update with restart polkadot-launch process.
name: nodes-only update
.github/workflows/test_codestyle_v2.ymldiffbeforeafterboth--- a/.github/workflows/test_codestyle_v2.yml
+++ b/.github/workflows/test_codestyle_v2.yml
@@ -1,3 +1,4 @@
+# https://cryptousetech.atlassian.net/wiki/spaces/CI/pages/2586804253/Yarn+eslint
# Yarn Eslint over tests
#
name: yarn eslint
.github/workflows/try-runtime_v2.ymldiffbeforeafterboth--- a/.github/workflows/try-runtime_v2.yml
+++ b/.github/workflows/try-runtime_v2.yml
@@ -1,5 +1,5 @@
# Try-runtime checks
-# https://cryptousetech.atlassian.net/browse/CI-38
+# https://cryptousetech.atlassian.net/wiki/spaces/CI/pages/2587656213/Try+runtime
# Triger: only call from main workflow(re-usable workflows)
on:
.github/workflows/unit-test_v2.ymldiffbeforeafterboth1# Re-Usable Workflow for lanching Unit tests2name: unit tests34# Controls when the action will run.5# Triger: only call from main workflow(re-usable workflows)6on:7 workflow_call:89# A workflow run is made up of one or more jobs that can run sequentially or in parallel10jobs:11 12 unit_tests:13 # The type of runner that the job will run on14 runs-on: [self-hosted-ci,medium]15 timeout-minutes: 13801617 name: ${{ github.base_ref }}1819 continue-on-error: true #Do not stop testing of matrix runs failed. As it decided during PR review - it required 50/50& Let's check it with false.202122 steps:2324 - name: Clean Workspace25 uses: AutoModality/action-clean@v1.1.02627 # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it28 - uses: actions/checkout@v329 with:30 ref: ${{ github.head_ref }} #Checking out head commit3132 - name: Read .env file33 uses: xom9ikk/dotenv@v1.0.23435 - name: Generate ENV related extend file for docker-compose36 uses: cuchi/jinja2-action@v1.2.037 with:38 template: .docker/docker-compose.tmp-unit.j239 output_file: .docker/docker-compose.unit.yml40 variables: |41 RUST_TOOLCHAIN=${{ env.RUST_TOOLCHAIN }}42 4344 - name: Show build configuration45 run: cat .docker/docker-compose.unit.yml4647 - name: Build the stack48 run: docker-compose -f ".docker/docker-compose-dev.yaml" -f ".docker/docker-compose.unit.yml" up --build --force-recreate --timeout 300 --remove-orphans --exit-code-from node-dev4950 - name: Stop running containers51 if: always() # run this step always52 run: docker-compose -f ".docker/docker-compose-dev.yaml" -f ".docker/docker-compose.unit.yml" down53 54 - name: Remove builder cache55 if: always() # run this step always56 run: |57 docker builder prune -f -a58 docker system prune -f59 docker image prune -f -a1# https://cryptousetech.atlassian.net/wiki/spaces/CI/pages/2586738699/Unit+Tests2# Re-Usable Workflow for lanching Unit tests3name: unit tests45# Controls when the action will run.6# Triger: only call from main workflow(re-usable workflows)7on:8 workflow_call:910# A workflow run is made up of one or more jobs that can run sequentially or in parallel11jobs:12 13 unit_tests:14 # The type of runner that the job will run on15 runs-on: [self-hosted-ci,medium]16 timeout-minutes: 13801718 name: ${{ github.base_ref }}1920 continue-on-error: true #Do not stop testing of matrix runs failed. As it decided during PR review - it required 50/50& Let's check it with false.212223 steps:2425 - name: Clean Workspace26 uses: AutoModality/action-clean@v1.1.02728 # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it29 - uses: actions/checkout@v330 with:31 ref: ${{ github.head_ref }} #Checking out head commit3233 - name: Read .env file34 uses: xom9ikk/dotenv@v1.0.23536 - name: Generate ENV related extend file for docker-compose37 uses: cuchi/jinja2-action@v1.2.038 with:39 template: .docker/docker-compose.tmp-unit.j240 output_file: .docker/docker-compose.unit.yml41 variables: |42 RUST_TOOLCHAIN=${{ env.RUST_TOOLCHAIN }}43 4445 - name: Show build configuration46 run: cat .docker/docker-compose.unit.yml4748 - name: Build the stack49 run: docker-compose -f ".docker/docker-compose-dev.yaml" -f ".docker/docker-compose.unit.yml" up --build --force-recreate --timeout 300 --remove-orphans --exit-code-from node-dev5051 - name: Stop running containers52 if: always() # run this step always53 run: docker-compose -f ".docker/docker-compose-dev.yaml" -f ".docker/docker-compose.unit.yml" down54 55 - name: Remove builder cache56 if: always() # run this step always57 run: |58 docker builder prune -f -a59 docker system prune -f60 docker image prune -f -a