difftreelog
Merge pull request #656 from UniqueNetwork/tests/parallel-ci
in: master
Tests/parallel ci
10 files changed
.docker/Dockerfile-parachain-node-onlydiffbeforeafterboth--- a/.docker/Dockerfile-parachain-node-only
+++ b/.docker/Dockerfile-parachain-node-only
@@ -80,7 +80,7 @@
nvm install v16.16.0 && \
nvm use v16.16.0
-RUN git clone https://github.com/uniquenetwork/polkadot-launch -b feature/runtime-upgrade-testing
+RUN git clone https://github.com/uniquenetwork/polkadot-launch -b unique-network
RUN export NVM_DIR="$HOME/.nvm" && \
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" && \
.docker/docker-compose.tmp-node.j2diffbeforeafterboth--- a/.docker/docker-compose.tmp-node.j2
+++ b/.docker/docker-compose.tmp-node.j2
@@ -24,9 +24,11 @@
expose:
- 9944
- 9933
+ - 9844
ports:
- 127.0.0.1:9944:9944
- 127.0.0.1:9933:9933
+ - 127.0.0.1:9844:9844
logging:
options:
max-size: "1m"
.envdiffbeforeafterboth--- a/.env
+++ b/.env
@@ -1,27 +1,22 @@
RUST_TOOLCHAIN=nightly-2022-07-24
POLKADOT_BUILD_BRANCH=release-v0.9.29
-POLKADOT_MAINNET_BRANCH=release-v0.9.26
+POLKADOT_MAINNET_BRANCH=release-v0.9.28
+STATEMINT_BUILD_BRANCH=release-parachains-v9271
+ACALA_BUILD_BRANCH=2.9.6
+MOONBEAM_BUILD_BRANCH=v0.26.1
UNIQUE_MAINNET_TAG=v924010
-
-KUSAMA_MAINNET_BRANCH=release-v0.9.26
-QUARTZ_MAINNET_TAG=quartz-v924012-2-opal-runtime-feature
-
-UNQWND_MAINNET_BRANCH=release-v0.9.24
+UNIQUE_REPLICA_FROM=wss://eu-ws.unique.network:443
-OPAL_REPLICA_FROM=wss://eu-ws-opal.unique.network:443
+KUSAMA_MAINNET_BRANCH=release-v0.9.29
+STATEMINE_BUILD_BRANCH=parachains-v9271
+KARURA_BUILD_BRANCH=release-karura-2.9.5
+MOONRIVER_BUILD_BRANCH=v0.26.1
+QUARTZ_MAINNET_TAG=quartz-v924012-2
QUARTZ_REPLICA_FROM=wss://eu-ws-quartz.unique.network:443
-UNIQUE_REPLICA_FROM=wss://eu-ws.unique.network:443
+UNQWND_MAINNET_BRANCH=release-v0.9.30
+WESTMINT_BUILD_BRANCH=parachains-v9290
+OPAL_MAINNET_TAG=quartz-v924012-2-opal-runtime-feature
+OPAL_REPLICA_FROM=wss://eu-ws-opal.unique.network:443
POLKADOT_LAUNCH_BRANCH=unique-network
-
-KARURA_BUILD_BRANCH=2.9.1
-ACALA_BUILD_BRANCH=2.9.2
-
-MOONRIVER_BUILD_BRANCH=runtime-1701
-MOONBEAM_BUILD_BRANCH=runtime-1701
-
-STATEMINE_BUILD_BRANCH=parachains-v9270
-STATEMINT_BUILD_BRANCH=release-parachains-v9230
-WESTMINT_BUILD_BRANCH=parachains-v9270
-
.github/workflows/ci-develop.ymldiffbeforeafterboth--- a/.github/workflows/ci-develop.yml
+++ b/.github/workflows/ci-develop.yml
@@ -29,6 +29,14 @@
if: ${{ (github.event.pull_request.draft == false && contains( github.event.pull_request.labels.*.name, 'xcm')) }}
uses: ./.github/workflows/xcm.yml
secrets: inherit # pass all secrets
+
+ forkless:
+ if: ${{ (github.event.pull_request.draft == false && contains( github.event.pull_request.labels.*.name, 'forkless')) }}
+ uses: ./.github/workflows/forkless.yml
+
+ node-only-update:
+ if: ${{ (github.event.pull_request.draft == false && contains( github.event.pull_request.labels.*.name, 'forkless')) }}
+ uses: ./.github/workflows/node-only-update_v2.yml
codestyle:
if: github.event.pull_request.draft == false
.github/workflows/execution-matrix.ymldiffbeforeafterboth--- a/.github/workflows/execution-matrix.yml
+++ b/.github/workflows/execution-matrix.yml
@@ -36,7 +36,7 @@
id: create_matrix
with:
matrix: |
- network {opal}, runtime {opal}, features {opal-runtime}, mainnet_branch {${{ env.QUARTZ_MAINNET_TAG }}}, replica_from_address {${{ env.OPAL_REPLICA_FROM }}}
+ network {opal}, runtime {opal}, features {opal-runtime}, mainnet_branch {${{ env.OPAL_MAINNET_TAG }}}, replica_from_address {${{ env.OPAL_REPLICA_FROM }}}
network {quartz}, runtime {quartz}, features {quartz-runtime}, mainnet_branch {${{ env.QUARTZ_MAINNET_TAG }}}, replica_from_address {${{ env.QUARTZ_REPLICA_FROM }}}
network {unique}, runtime {unique}, features {unique-runtime}, mainnet_branch {${{ env.UNIQUE_MAINNET_TAG }}}, replica_from_address {${{ env.UNIQUE_REPLICA_FROM }}}
.github/workflows/forkless-update-data_v2.ymldiffbeforeafterboth--- a/.github/workflows/forkless-update-data_v2.yml
+++ b/.github/workflows/forkless-update-data_v2.yml
@@ -36,7 +36,7 @@
id: create_matrix
with:
matrix: |
- network {opal}, runtime {opal}, features {opal-runtime}, mainnet_branch {${{ env.QUARTZ_MAINNET_TAG }}}, replica_from_address {${{ env.OPAL_REPLICA_FROM }}}
+ network {opal}, runtime {opal}, features {opal-runtime}, mainnet_branch {${{ env.OPAL_MAINNET_TAG }}}, replica_from_address {${{ env.OPAL_REPLICA_FROM }}}
network {quartz}, runtime {quartz}, features {quartz-runtime}, mainnet_branch {${{ env.QUARTZ_MAINNET_TAG }}}, replica_from_address {${{ env.QUARTZ_REPLICA_FROM }}}
network {unique}, runtime {unique}, features {unique-runtime}, mainnet_branch {${{ env.UNIQUE_MAINNET_TAG }}}, replica_from_address {${{ env.UNIQUE_REPLICA_FROM }}}
.github/workflows/forkless-update-nodata_v2.ymldiffbeforeafterboth--- a/.github/workflows/forkless-update-nodata_v2.yml
+++ b/.github/workflows/forkless-update-nodata_v2.yml
@@ -33,11 +33,11 @@
uses: xom9ikk/dotenv@v1.0.2
- name: Create Execution matrix
- uses: fabiocaccamo/create-matrix-action@v2
+ uses: CertainLach/create-matrix-action@v3
id: create_matrix
with:
matrix: |
- network {opal}, runtime {opal}, features {opal-runtime}, mainnet_branch {${{ env.QUARTZ_MAINNET_TAG }}}
+ network {opal}, runtime {opal}, features {opal-runtime}, mainnet_branch {${{ env.OPAL_MAINNET_TAG }}}
network {quartz}, runtime {quartz}, features {quartz-runtime}, mainnet_branch {${{ env.QUARTZ_MAINNET_TAG }}}
network {unique}, runtime {unique}, features {unique-runtime}, mainnet_branch {${{ env.UNIQUE_MAINNET_TAG }}}
@@ -100,6 +100,9 @@
- name: Show launch-config-forkless configuration
run: cat .docker/launch-config-forkless-nodata.json
+ - uses: actions/setup-node@v3
+ with:
+ node-version: 16
- name: Build the stack
run: docker-compose -f ".docker/docker-compose-forkless.yml" -f ".docker/docker-compose.${{ matrix.network }}.yml" up -d --build --force-recreate --timeout 300
@@ -161,6 +164,50 @@
- name: Show docker logs
if: success() || failure()
run: cat './forkless-parachain-upgrade-nodata-logs.${{ matrix.features }}/node-parachain.log'
+
+ - name: Run Parallel tests
+ working-directory: tests
+ run: |
+ yarn install
+ yarn add mochawesome
+ node scripts/readyness.js
+ echo "Ready to start tests"
+ yarn polkadot-types
+ NOW=$(date +%s) && yarn testParallel --reporter mochawesome --reporter-options reportFilename=test-parallel-${NOW}
+ env:
+ RPC_URL: http://127.0.0.1:9933/
+
+ - name: Test Report Parallel
+ uses: phoenix-actions/test-reporting@v8
+ id: test-report-parallel
+ if: success() || failure() # run this step even if previous step failed
+ with:
+ name: Report Parallel tests results - ${{ matrix.network }} # Name of the check run which will be created
+ path: tests/mochawesome-report/test-parallel-*.json # Path to test results
+ reporter: mochawesome-json
+ fail-on-error: 'false'
+
+ - name: Run Sequential tests
+ working-directory: tests
+ run: |
+ yarn install
+ yarn add mochawesome
+ node scripts/readyness.js
+ echo "Ready to start tests"
+ yarn polkadot-types
+ NOW=$(date +%s) && yarn testSequential --reporter mochawesome --reporter-options reportFilename=test-sequential-${NOW}
+ env:
+ RPC_URL: http://127.0.0.1:9933/
+
+ - name: Test Report Sequential
+ uses: phoenix-actions/test-reporting@v8
+ id: test-report-sequential
+ if: success() || failure() # run this step even if previous step failed
+ with:
+ name: Report Sequential tests results - ${{ matrix.network }} # Name of the check run which will be created
+ path: tests/mochawesome-report/test-sequential-*.json # Path to test results
+ reporter: mochawesome-json
+ fail-on-error: 'false'
- name: Stop running containers
if: always() # run this step always
.github/workflows/generate-execution-matrix.ymldiffbeforeafterboth--- a/.github/workflows/generate-execution-matrix.yml
+++ b/.github/workflows/generate-execution-matrix.yml
@@ -40,6 +40,6 @@
id: create_matrix
with:
matrix: |
- network {opal}, runtime {opal}, features {opal-runtime}, mainnet_branch {${{ env.QUARTZ_MAINNET_TAG }}}, replica_from_address {${{ env.OPAL_REPLICA_FROM }}}
+ network {opal}, runtime {opal}, features {opal-runtime}, mainnet_branch {${{ env.OPAL_MAINNET_TAG }}}, replica_from_address {${{ env.OPAL_REPLICA_FROM }}}
network {quartz}, runtime {quartz}, features {quartz-runtime}, mainnet_branch {${{ env.QUARTZ_MAINNET_TAG }}}, replica_from_address {${{ env.QUARTZ_REPLICA_FROM }}}
network {unique}, runtime {unique}, features {unique-runtime}, mainnet_branch {${{ env.UNIQUE_MAINNET_TAG }}}, replica_from_address {${{ env.UNIQUE_REPLICA_FROM }}}
.github/workflows/market-test_v2.ymldiffbeforeafterboth1name: market api tests23# Controls when the action will run.4on:5 workflow_call:678# A workflow run is made up of one or more jobs that can run sequentially or in parallel9jobs:1011 market_test:12 # The type of runner that the job will run on13 runs-on: [self-hosted-ci,medium]14 timeout-minutes: 1801516 name: ${{ matrix.network }} 1718 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.19 20 strategy:21 matrix:22 include:23 - network: "opal"24 features: "opal-runtime"25# - network: "quartz"26# features: "quartz-runtime"27# - network: "unique"28# features: "unique-runtime"2930 steps:313233 - name: Clean Workspace34 uses: AutoModality/action-clean@v1.1.03536 # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it37 - name: Checkout master repo38 uses: actions/checkout@master39 with:40 ref: ${{ github.head_ref }} #Checking out head commit4142 - name: Checkout Market e2e tests43 uses: actions/checkout@v344 with:45 repository: 'UniqueNetwork/market-e2e-tests'46 ssh-key: ${{ secrets.GH_PAT }}47 path: 'qa-tests'48 ref: 'master'4950 - name: Read .env file51 uses: xom9ikk/dotenv@v1.0.252 53 - name: Copy qa-tests/.env.example to qa-tests/.env54 working-directory: qa-tests55 run: cp .env.docker .env56 57 - name: Generate ENV related extend file for docker-compose58 uses: cuchi/jinja2-action@v1.2.059 with:60 template: qa-tests/.docker/docker-compose.tmp-market.j261 output_file: qa-tests/.docker/docker-compose.${{ matrix.network }}.yml62 variables: |63 REPO_URL=${{ github.server_url }}/${{ github.repository }}.git64 RUST_TOOLCHAIN=${{ env.RUST_TOOLCHAIN }}65 POLKADOT_BUILD_BRANCH=${{ env.POLKADOT_BUILD_BRANCH }}66 FEATURE=${{ matrix.features }}67 BRANCH=${{ github.head_ref }}686970 - name: Show build configuration71 working-directory: qa-tests72 run: cat .docker/docker-compose.${{ matrix.network }}.yml7374 - name: Start node-parachain75 working-directory: qa-tests76 run: docker-compose -f ".docker/docker-compose.market.yml" -f ".docker/docker-compose.${{ matrix.network }}.yml" up -d --build --remove-orphans --force-recreate node-parachain 77 78 - uses: actions/setup-node@v379 with:80 node-version: 16.178182 - name: Setup TypeScript83 working-directory: qa-tests84 run: |85 npm install -g ts-node86 npm install8788 - name: Copy qa-tests/.env.docker to qa-tests/.env89 working-directory: qa-tests90 run: | 91 rm -rf .env92 cp .env.docker .env9394# Temporary disable node readyness check. Have to dig into the script logic.95# - name: Wait for chain up and running96# working-directory: tests97# run: |98# yarn install99# node scripts/readyness.js100# echo "Ready to start tests"101# env:102# RPC_URL: http://127.0.0.1:9933/103104 - name: Wait for chain up and running105 run: |106 sleep 1200s107 echo "Ready to start Market e2e tests"108109 - name: Show content of .env file and Generate accounts110 working-directory: qa-tests111 run: |112 cat .env113 ts-node ./src/scripts/create-market-accounts.ts114115 - name: Copy qa-tests/.env to qa-tests/.env.docker116 working-directory: qa-tests117 run: | 118 rm -rf .env.docker119 cp .env .env.docker120121 - name: Get chain logs122 if: always() # run this step always123 run: |124 docker exec node-parachain cat /polkadot-launch/9944.log125 docker exec node-parachain cat /polkadot-launch/9945.log126 docker exec node-parachain cat /polkadot-launch/alice.log127 docker exec node-parachain cat /polkadot-launch/eve.log128 docker exec node-parachain cat /polkadot-launch/dave.log129 docker exec node-parachain cat /polkadot-launch/charlie.log130 131 - name: Deploy contracts132 run: |133 cd qa-tests134 ts-node ./src/scripts/deploy-contract.ts135136 - name: Timeout for debug137 if: failure()138 run: sleep 300s139140 - name: Import test data141 working-directory: qa-tests142 run: ts-node ./src/scripts/create-test-collections.ts143144 - name: Show content of qa-test .env145 working-directory: qa-tests146 run: cat .env147148 - name: Read qa -test .env file Before market start149 uses: xom9ikk/dotenv@v1.0.2150 with:151 path: qa-tests/152153 - name: local-market:start154 run: docker-compose -f "qa-tests/.docker/docker-compose.market.yml" -f "qa-tests/.docker/docker-compose.${{ matrix.network }}.yml" up -d --build155156 - name: Wait for market readyness157 working-directory: qa-tests158 run: src/scripts/wait-market-ready.sh159 shell: bash160161 - name: Install dependecies162 working-directory: qa-tests163 run: |164 npm ci165 npm install -D @playwright/test166 npx playwright install-deps167 npx playwright install168169 - name: Show content of qa-test .env170 working-directory: qa-tests171 run: cat .env172 173 - name: Test API interface174 working-directory: qa-tests175 run: |176 npx playwright test --workers=8 --quiet .*.api.test.ts --reporter=github --config playwright.config.ts177178 - name: Timeout for debug179 if: failure()180 run: sleep 300s181182 - name: Stop running containers183 if: always() # run this step always184 run: docker-compose -f "qa-tests/.docker/docker-compose.market.yml" -f "qa-tests/.docker/docker-compose.${{ matrix.network }}.yml" down --volumes185186 - name: Remove builder cache187 if: always() # run this step always188 run: |189 docker builder prune -f190 docker system prune -f191192 - name: Clean Workspace193 if: always()194 uses: AutoModality/action-clean@v1.1.01951961971name: market api tests23# Controls when the action will run.4on:5 workflow_call:678# A workflow run is made up of one or more jobs that can run sequentially or in parallel9jobs:1011 market_test:12 # The type of runner that the job will run on13 runs-on: [self-hosted-ci,large]14 timeout-minutes: 3601516 name: ${{ matrix.network }} 1718 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.19 20 strategy:21 matrix:22 include:23 - network: "opal"24 features: "opal-runtime"25# - network: "quartz"26# features: "quartz-runtime"27# - network: "unique"28# features: "unique-runtime"2930 steps:313233 - name: Clean Workspace34 uses: AutoModality/action-clean@v1.1.03536 # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it37 - name: Checkout master repo38 uses: actions/checkout@master39 with:40 ref: ${{ github.head_ref }} #Checking out head commit4142 - name: Checkout Market e2e tests43 uses: actions/checkout@v344 with:45 repository: 'UniqueNetwork/market-e2e-tests'46 ssh-key: ${{ secrets.GH_PAT }}47 path: 'qa-tests'48 ref: 'master'4950 - name: Read .env file51 uses: xom9ikk/dotenv@v1.0.252 53 - name: Copy qa-tests/.env.example to qa-tests/.env54 working-directory: qa-tests55 run: cp .env.docker .env56 57 - name: Generate ENV related extend file for docker-compose58 uses: cuchi/jinja2-action@v1.2.059 with:60 template: qa-tests/.docker/docker-compose.tmp-market.j261 output_file: qa-tests/.docker/docker-compose.${{ matrix.network }}.yml62 variables: |63 REPO_URL=${{ github.server_url }}/${{ github.repository }}.git64 RUST_TOOLCHAIN=${{ env.RUST_TOOLCHAIN }}65 POLKADOT_BUILD_BRANCH=${{ env.POLKADOT_BUILD_BRANCH }}66 FEATURE=${{ matrix.features }}67 BRANCH=${{ github.head_ref }}686970 - name: Show build configuration71 working-directory: qa-tests72 run: cat .docker/docker-compose.${{ matrix.network }}.yml7374 - name: Start node-parachain75 working-directory: qa-tests76 run: docker-compose -f ".docker/docker-compose.market.yml" -f ".docker/docker-compose.${{ matrix.network }}.yml" up -d --build --remove-orphans --force-recreate node-parachain 77 78 - uses: actions/setup-node@v379 with:80 node-version: 16.178182 - name: Setup TypeScript83 working-directory: qa-tests84 run: |85 npm install -g ts-node86 npm install8788 - name: Copy qa-tests/.env.docker to qa-tests/.env89 working-directory: qa-tests90 run: | 91 rm -rf .env92 cp .env.docker .env9394# Temporary disable node readyness check. Have to dig into the script logic.95# - name: Wait for chain up and running96# working-directory: tests97# run: |98# yarn install99# node scripts/readyness.js100# echo "Ready to start tests"101# env:102# RPC_URL: http://127.0.0.1:9933/103104 - name: Wait for chain up and running105 run: |106 sleep 1200s107 echo "Ready to start Market e2e tests"108109 - name: Show content of .env file and Generate accounts110 working-directory: qa-tests111 run: |112 cat .env113 ts-node ./src/scripts/create-market-accounts.ts114115 - name: Copy qa-tests/.env to qa-tests/.env.docker116 working-directory: qa-tests117 run: | 118 rm -rf .env.docker119 cp .env .env.docker120121 - name: Get chain logs122 if: always() # run this step always123 run: |124 docker exec node-parachain cat /polkadot-launch/9944.log125 docker exec node-parachain cat /polkadot-launch/9945.log126 docker exec node-parachain cat /polkadot-launch/alice.log127 docker exec node-parachain cat /polkadot-launch/eve.log128 docker exec node-parachain cat /polkadot-launch/dave.log129 docker exec node-parachain cat /polkadot-launch/charlie.log130 131 - name: Deploy contracts132 run: |133 cd qa-tests134 ts-node ./src/scripts/deploy-contract.ts135136 - name: Timeout for debug137 if: failure()138 run: sleep 300s139140 - name: Import test data141 working-directory: qa-tests142 run: ts-node ./src/scripts/create-test-collections.ts143144 - name: Show content of qa-test .env145 working-directory: qa-tests146 run: cat .env147148 - name: Read qa -test .env file Before market start149 uses: xom9ikk/dotenv@v1.0.2150 with:151 path: qa-tests/152153 - name: local-market:start154 run: docker-compose -f "qa-tests/.docker/docker-compose.market.yml" -f "qa-tests/.docker/docker-compose.${{ matrix.network }}.yml" up -d --build155156 - name: Wait for market readyness157 working-directory: qa-tests158 run: src/scripts/wait-market-ready.sh159 shell: bash160161 - name: Install dependecies162 working-directory: qa-tests163 run: |164 npm ci165 npm install -D @playwright/test166 npx playwright install-deps167 npx playwright install168169 - name: Show content of qa-test .env170 working-directory: qa-tests171 run: cat .env172 173 - name: Test API interface174 working-directory: qa-tests175 run: |176 npx playwright test --workers=8 --quiet .*.api.test.ts --reporter=github --config playwright.config.ts177178 - name: Timeout for debug179 if: failure()180 run: sleep 300s181182 - name: Stop running containers183 if: always() # run this step always184 run: docker-compose -f "qa-tests/.docker/docker-compose.market.yml" -f "qa-tests/.docker/docker-compose.${{ matrix.network }}.yml" down --volumes185186 - name: Remove builder cache187 if: always() # run this step always188 run: |189 docker builder prune -f190 docker system prune -f191192 - name: Clean Workspace193 if: always()194 uses: AutoModality/action-clean@v1.1.0195196197.github/workflows/node-only-update_v2.ymldiffbeforeafterboth--- a/.github/workflows/node-only-update_v2.yml
+++ b/.github/workflows/node-only-update_v2.yml
@@ -32,11 +32,11 @@
uses: xom9ikk/dotenv@v1.0.2
- name: Create Execution matrix
- uses: fabiocaccamo/create-matrix-action@v2
+ uses: CertainLach/create-matrix-action@v3
id: create_matrix
with:
matrix: |
- network {opal}, runtime {opal}, features {opal-runtime}, mainnet_branch {${{ env.QUARTZ_MAINNET_TAG }}}
+ network {opal}, runtime {opal}, features {opal-runtime}, mainnet_branch {${{ env.OPAL_MAINNET_TAG }}}
network {quartz}, runtime {quartz}, features {quartz-runtime}, mainnet_branch {${{ env.QUARTZ_MAINNET_TAG }}}
network {unique}, runtime {unique}, features {unique-runtime}, mainnet_branch {${{ env.UNIQUE_MAINNET_TAG }}}
@@ -47,9 +47,7 @@
# The type of runner that the job will run on
runs-on: [self-hosted-ci,large]
-
-
- timeout-minutes: 2880
+ timeout-minutes: 2880 # 48 hours for execution jobs.
name: ${{ matrix.network }}
@@ -161,7 +159,6 @@
with:
ref: ${{ matrix.mainnet_branch }} #Checking out head commit
path: ${{ matrix.mainnet_branch }}
-
- name: Run tests before Node Parachain upgrade
working-directory: ${{ matrix.mainnet_branch }}/tests
@@ -174,7 +171,7 @@
env:
RPC_URL: http://127.0.0.1:9933/
- - name: Test Report Before Node upgrade
+ - name: Upload Test Report Before Node upgrade
uses: phoenix-actions/test-reporting@v8
id: test-report-before
if: success() || failure() # run this step even if previous step failed
@@ -184,9 +181,49 @@
reporter: mochawesome-json
fail-on-error: 'false'
+ # TODO uncomment thease steps after the merge
+ #- name: Run Parallel tests before Node Parachain upgrade
+ # working-directory: ${{ matrix.mainnet_branch }}/tests
+ # run: |
+ # yarn install
+ # yarn add mochawesome
+ # echo "Ready to start tests"
+ # yarn polkadot-types
+ # NOW=$(date +%s) && yarn testParallel --reporter mochawesome --reporter-options reportFilename=test-parallel-${NOW}
+ # env:
+ # RPC_URL: http://127.0.0.1:9933/
+
+ #- name: Upload Parallel Test Report Before Node upgrade
+ # uses: phoenix-actions/test-reporting@v8
+ # id: test-parallel-report-before
+ # if: success() || failure() # run this step even if previous step failed
+ # with:
+ # name: Tests before node upgrade ${{ matrix.network }} # Name of the check run which will be created
+ # path: ${{ matrix.mainnet_branch }}/tests/mochawesome-report/test-parallel-*.json # Path to test results
+ # reporter: mochawesome-json
+ # fail-on-error: 'false'
+
+ # - name: Run Sequential tests before Node Parachain upgrade
+ # if: success() || failure()
+ # working-directory: ${{ matrix.mainnet_branch }}/tests
+ # run: NOW=$(date +%s) && yarn testSequential --reporter mochawesome --reporter-options reportFilename=test-sequential-${NOW}
+ # env:
+ # RPC_URL: http://127.0.0.1:9933/
+
+ # - name: Upload Sequential Test Report Before Node upgrade
+ # uses: phoenix-actions/test-reporting@v8
+ # id: test-sequential-report-before
+ # if: success() || failure() # run this step even if previous step failed
+ # with:
+ # name: Tests before node upgrade ${{ matrix.network }} # Name of the check run which will be created
+ # path: ${{ matrix.mainnet_branch }}/tests/mochawesome-report/test-sequential-*.json # Path to test results
+ # reporter: mochawesome-json
+ # fail-on-error: 'false'
+
- name: Send SIGUSR1 to polkadot-launch process
if: success() || failure()
run: |
+ #Get PID of polkadot-launch
ContainerID=$(docker ps -aqf "name=node-parachain")
PID=$(docker exec node-parachain pidof 'polkadot-launch')
sleep 30s
@@ -195,11 +232,10 @@
echo -e "\n"
echo -e "Restart polkadot-launch process: $PID\n"
docker exec node-parachain kill -SIGUSR1 ${PID}
- echo -e "SIGUSR1 sent to Polkadot-launch PID: $PID\n"
- echo -e "Get node-parachain logs:\n"
- docker logs -t -n 5 ${ContainerID}
+ echo "SIGUSR1 sent to Polkadot-launch PID: $PID"
+ docker logs ${ContainerID}
- - name: Get chain logs
+ - name: Get chain logs in case of docker image crashed after Polkadot Launch restart
if: failure() # run this step only at failure
run: |
docker exec node-parachain cat /polkadot-launch/9944.log
@@ -253,9 +289,9 @@
echo "Halting script"
exit 0
shell: bash
-
+
+ ## TODO: Remove next two blocks before switch to Parrallel & Sequental tests. Uncoment commented blocks.
- name: Run tests after Node Parachain upgrade
- if: success()
working-directory: ${{ matrix.mainnet_branch }}/tests
run: |
yarn install
@@ -276,6 +312,46 @@
reporter: mochawesome-json
fail-on-error: 'false'
+ # TODO uncomment thease steps after the merge
+ #- name: Run Parallel tests after Node Parachain upgrade
+ # working-directory: ${{ matrix.mainnet_branch }}/tests
+ # run: |
+ # yarn install
+ # yarn add mochawesome
+ # node scripts/readyness.js
+ # echo "Ready to start tests"
+ # yarn polkadot-types
+ # NOW=$(date +%s) && yarn testParallel --reporter mochawesome --reporter-options reportFilename=test-parallel-${NOW}
+ # env:
+ # RPC_URL: http://127.0.0.1:9933/
+
+ #- name: Test Report Parallel After Node upgrade
+ # uses: phoenix-actions/test-reporting@v8
+ # id: test-report-parallel-after
+ # if: success() || failure() # run this step even if previous step failed
+ # with:
+ # name: Tests after node upgrade ${{ matrix.network }} # Name of the check run which will be created
+ # path: ${{ matrix.mainnet_branch }}/tests/mochawesome-report/test-parallel-*.json # Path to test results
+ # reporter: mochawesome-json
+ # fail-on-error: 'false'
+
+ #- name: Run Sequential tests after Node Parachain upgrade
+ # if: success() || failure()
+ # working-directory: ${{ matrix.mainnet_branch }}/tests
+ # run: NOW=$(date +%s) && yarn testSequential --reporter mochawesome --reporter-options reportFilename=test-sequential-${NOW}
+ # env:
+ # RPC_URL: http://127.0.0.1:9933/
+
+ #- name: Upload Sequential Test Report After Node upgrade
+ # uses: phoenix-actions/test-reporting@v8
+ # id: test-sequential-report-after
+ # if: success() || failure() # run this step even if previous step failed
+ # with:
+ # name: Tests before node upgrade ${{ matrix.network }} # Name of the check run which will be created
+ # path: ${{ matrix.mainnet_branch }}/tests/mochawesome-report/test-sequential-*.json # Path to test results
+ # reporter: mochawesome-json
+ # fail-on-error: 'false'
+
- name: Stop running containers
if: always() # run this step always
@@ -288,6 +364,7 @@
docker system prune -f
docker image prune -f -a
- - name: Clean Workspace
- if: always()
- uses: AutoModality/action-clean@v1.1.0
+ - name: Remove repo at the end
+ if: always() # run this step always
+ run: |
+ ls -ls ./