git.delta.rocks / unique-network / refs/commits / 4f6ef612fc53

difftreelog

Merge branch 'develop' into CI-43-try-runtime

Alexander Aksenov2022-08-18parents: #d49036f #032326e.patch.diff
in: master

10 files changed

modified.docker/Dockerfile-try-runtimediffbeforeafterboth
--- a/.docker/Dockerfile-try-runtime
+++ b/.docker/Dockerfile-try-runtime
@@ -34,17 +34,12 @@
 
 ARG PROFILE=release
 ARG FEATURE=
-ARG REPO_URL=
-ARG BRANCH=
 ARG FORK_FROM=
 
+COPY . /unique_parachain
 WORKDIR /unique_parachain
 
 
 RUN echo "Requested features: $FEATURE\n" && \
     echo "Fork from: $FORK_FROM\n" && \
-    echo "Repositry URL: $REPO_URL\n" && \
-    echo "Branch: $BRANCH\n" && \
-    git clone $REPO_URL -b $BRANCH . && \
     cargo run --features=$FEATURE --release -- try-runtime on-runtime-upgrade live --uri $FORK_FROM
- 
\ No newline at end of file
modified.docker/docker-compose.try-runtime.j2diffbeforeafterboth
--- a/.docker/docker-compose.try-runtime.j2
+++ b/.docker/docker-compose.try-runtime.j2
@@ -5,8 +5,6 @@
     build:
       args:
         - "RUST_TOOLCHAIN={{ RUST_TOOLCHAIN }}"
-        - "BRANCH={{ BRANCH }}"
-        - "REPO_URL={{ REPO_URL }}"
         - "FEATURE={{ FEATURE }}"
         - "FORK_FROM={{ FORK_FROM }}"
 
modified.github/workflows/build-test-master.ymldiffbeforeafterboth
--- a/.github/workflows/build-test-master.yml
+++ b/.github/workflows/build-test-master.yml
@@ -1,4 +1,4 @@
-name: MASTER - Build & Test
+name: Yarn test para
 
 # Controls when the action will run.
 on:
@@ -19,15 +19,19 @@
 env:
   REPO_URL: ${{ github.server_url }}/${{ github.repository }}
 
+concurrency: 
+  group: ${{ github.workflow }}-${{ github.ref }}
+  cancel-in-progress: true
+
 # A workflow run is made up of one or more jobs that can run sequentially or in parallel
 jobs:
 
   master-build-and-test:
     # The type of runner that the job will run on
-    runs-on: self-hosted-ci
+    runs-on: [self-hosted-ci,large]
+    timeout-minutes: 1380
 
-
-    name: ${{ matrix.network }} - Build and Test
+    name: ${{ matrix.network }}
 
     continue-on-error: true         #Do not stop testing of matrix runs failed.
 
modified.github/workflows/codestyle.ymldiffbeforeafterboth
--- a/.github/workflows/codestyle.yml
+++ b/.github/workflows/codestyle.yml
@@ -10,6 +10,10 @@
       - synchronize
       - ready_for_review
 
+concurrency: 
+  group: ${{ github.workflow }}-${{ github.ref }}
+  cancel-in-progress: true
+
 jobs:
   rustfmt:
     runs-on: self-hosted-ci
@@ -47,7 +51,7 @@
   clippy:
     if: ${{ false }}
     runs-on: self-hosted-ci
-
+      
     steps:
       - name: Skip if pull request is in Draft
         # `if: github.event.pull_request.draft == true` should be kept here, at
modified.github/workflows/fork-update-withdata.ymldiffbeforeafterboth
--- a/.github/workflows/fork-update-withdata.yml
+++ b/.github/workflows/fork-update-withdata.yml
@@ -1,4 +1,4 @@
-name: Fork Parachain update with data
+name: Upgrade replica
 
 # Controls when the action will run.
 on:
@@ -19,14 +19,19 @@
 env:
   REPO_URL: ${{ github.server_url }}/${{ github.repository }}
 
+concurrency: 
+  group: ${{ github.workflow }}-${{ github.ref }}
+  cancel-in-progress: true
+
 # A workflow run is made up of one or more jobs that can run sequentially or in parallel
 jobs:
 
   fork-update-withdata:
     # The type of runner that the job will run on
-    runs-on: self-hosted-ci
+    runs-on: [self-hosted-ci,large]
+    timeout-minutes: 1380
 
-    name: ${{ matrix.network }} Fork Parachain with data
+    name: ${{ matrix.network }}
 
     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.
 
modified.github/workflows/forkless-update-nodata.ymldiffbeforeafterboth
before · .github/workflows/forkless-update-nodata.yml
1name: Forkless Parachain update with no data23# Controls when the action will run.4on:5 # Triggers the workflow on push or pull request events but only for the master branch6  pull_request:7    branches:8      - master9    types:10      - opened11      - reopened12      - synchronize   #commit(s) pushed to the pull request13      - ready_for_review1415  # Allows you to run this workflow manually from the Actions tab16  workflow_dispatch:1718#Define Workflow variables19env:20  REPO_URL: ${{ github.server_url }}/${{ github.repository }}2122# A workflow run is made up of one or more jobs that can run sequentially or in parallel23jobs:2425  prepare-execution-marix:26    27    name: Prepare execution matrix28    29    runs-on: self-hosted-ci30    outputs:31      matrix: ${{ steps.create_matrix.outputs.matrix }}32    steps:33      34      - name: Clean Workspace35        uses: AutoModality/action-clean@v1.1.03637      # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it38      - uses: actions/checkout@v339        with:40          ref: ${{ github.head_ref }}  #Checking out head commit4142      - name: Read .env file43        uses: xom9ikk/dotenv@v1.0.24445      - name: Create Execution matrix46        uses: fabiocaccamo/create-matrix-action@v247        id: create_matrix48        with:49          matrix: |50            network {Opal}, runtime {opal}, features {opal-runtime}, mainnet_branch {${{ env.QUARTZ_MAINNET_TAG }}}51            network {Quartz}, runtime {quartz}, features {quartz-runtime}, mainnet_branch {${{ env.QUARTZ_MAINNET_TAG }}}52            network {Unique}, runtime {unique}, features {unique-runtime}, mainnet_branch {${{ env.UNIQUE_MAINNET_TAG }}}53545556  forkless-update-nodata:57    needs: prepare-execution-marix58    # The type of runner that the job will run on59    runs-on: self-hosted-ci6061    name: ${{ matrix.network }} - Forkless Parachain Upgrade NO data6263    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.6465    strategy:66      matrix:67        include: ${{fromJson(needs.prepare-execution-marix.outputs.matrix)}}686970    steps:71      - name: Skip if pull request is in Draft72        # `if: github.event.pull_request.draft == true` should be kept here, at73        # the step level, rather than at the job level. The latter is not74        # recommended because when the PR is moved from "Draft" to "Ready to75        # review" the workflow will immediately be passing (since it was skipped),76        # even though it hasn't actually ran, since it takes a few seconds for77        # the workflow to start. This is also disclosed in:78        # https://github.community/t/dont-run-actions-on-draft-pull-requests/16817/1779        # That scenario would open an opportunity for the check to be bypassed:80        # 1. Get your PR approved81        # 2. Move it to Draft82        # 3. Push whatever commits you want83        # 4. Move it to "Ready for review"; now the workflow is passing (it was84        #    skipped) and "Check reviews" is also passing (it won't be updated85        #    until the workflow is finished)86        if: github.event.pull_request.draft == true87        run: exit 18889      - name: Clean Workspace90        uses: AutoModality/action-clean@v1.1.09192      # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it93      - uses: actions/checkout@v394        with:95          ref: ${{ github.head_ref }}  #Checking out head commit9697      - name: Read .env file98        uses: xom9ikk/dotenv@v1.0.299100      - name: Generate ENV related extend file for docker-compose101        uses: cuchi/jinja2-action@v1.2.0102        with:103          template: .docker/docker-compose.tmp-forkless.j2104          output_file: .docker/docker-compose.${{ matrix.network }}.yml105          variables: |106            REPO_URL=${{ github.server_url }}/${{ github.repository }}.git107            RUST_TOOLCHAIN=${{ env.RUST_TOOLCHAIN }}108            POLKADOT_BUILD_BRANCH=${{ env.POLKADOT_BUILD_BRANCH }}109            POLKADOT_MAINNET_BRANCH=${{ env.POLKADOT_MAINNET_BRANCH }}110            MAINNET_TAG=${{ matrix.mainnet_tag }}111            MAINNET_BRANCH=${{ matrix.mainnet_branch }}112            FEATURE=${{ matrix.features }}113            RUNTIME=${{ matrix.runtime }}114            BRANCH=${{ github.head_ref }}115116      - name: Show build configuration117        run: cat .docker/docker-compose.${{ matrix.network }}.yml118119      - name: Generate launch-config.json120        uses: cuchi/jinja2-action@v1.2.0121        with:122          template: .docker/launch-config.j2123          output_file: .docker/launch-config-forkless.json124          variables: |125            FEATURE=${{ matrix.features }}126            RUNTIME=${{ matrix.runtime }}127128      - name: Show launch-config-forkless configuration129        run: cat .docker/launch-config-forkless.json130131132      - name: Build the stack133        run: docker-compose -f ".docker/docker-compose-forkless.yaml" -f ".docker/docker-compose.${{ matrix.network }}.yml" up -d --build  --force-recreate --timeout 300134135      - name: Check if docker logs consist logs related to Runtime Upgrade testing.136        if: success()137        run: |138          counter=160139          function check_container_status {140                docker inspect -f {{.State.Running}} node-parachain141          }142          function do_docker_logs {143                docker logs --details node-parachain  2>&1144          }145          function is_started {146                if [ "$(check_container_status)" == "true" ]; then147                    echo "Container: node-parachain RUNNING";148                    echo "Check Docker logs"149                    DOCKER_LOGS=$(do_docker_logs)150                    if [[ ${DOCKER_LOGS} = *"🛸 PARACHAINS' RUNTIME UPGRADE TESTING COMPLETE 🛸"* ]];then151                        echo "🛸 PARACHAINS' RUNTIME UPGRADE TESTING COMPLETE 🛸"152                        return 0153                        exit 1154                    else 155                        echo "🛸 PARACHAINS' RUNTIME UPGRADE TESTING COMPLETE 🛸 - Not found in logs output."156                        return 1157                        exit 1158                    fi159                else160                    echo "Container node-parachain not RUNNING"161                    echo "Halting all future checks"162                    exit 1163                fi164                exit 0165          }166          while ! is_started; do167                echo "Waiting for special message in log files "168                sleep 30s169                counter=$(( $counter - 1 ))170                echo "Counter: $counter"171                if [ "$counter" -gt "0" ]; then172                    continue173                else174                    break175                fi176                done177           echo "Halting script"178           exit 0179        shell: bash180181      - name: Collect Docker Logs182        if: success() || failure()183        uses: jwalton/gh-docker-logs@v2.2.0184        with:185          dest: './forkless-parachain-update-nodata-logs.${{ matrix.features }}'186          images: 'node-parachain' 187188      - name: Tar logs189        if: success() || failure()190        run: tar cvzf ./forkless-parachain-update-nodata-logs.${{ matrix.features }}.tgz ./forkless-parachain-update-nodata-logs.${{ matrix.features }}191192      - name: Upload logs to GitHub193        if: success() || failure()194        uses: actions/upload-artifact@master195        with:196          name: forkless-parachain-update-nodata-logs.${{ matrix.features }}.tgz197          path: ./forkless-parachain-update-nodata-logs.${{ matrix.features }}.tgz198199      - name: Stop running containers200        if: always()                   # run this step always201        run: docker-compose -f ".docker/docker-compose-forkless.yaml" -f ".docker/docker-compose.${{ matrix.network }}.yml" down
after · .github/workflows/forkless-update-nodata.yml
1name: Upgrade nodata23# Controls when the action will run.4on:5 # Triggers the workflow on push or pull request events but only for the master branch6  pull_request:7    branches:8      - master9    types:10      - opened11      - reopened12      - synchronize   #commit(s) pushed to the pull request13      - ready_for_review1415  # Allows you to run this workflow manually from the Actions tab16  workflow_dispatch:1718#Define Workflow variables19env:20  REPO_URL: ${{ github.server_url }}/${{ github.repository }}2122concurrency: 23  group: ${{ github.workflow }}-${{ github.ref }}24  cancel-in-progress: true2526# A workflow run is made up of one or more jobs that can run sequentially or in parallel27jobs:2829  prepare-execution-marix:30    31    name: Prepare execution matrix32    33    runs-on: self-hosted-ci34    outputs:35      matrix: ${{ steps.create_matrix.outputs.matrix }}3637    steps:38      39      - name: Clean Workspace40        uses: AutoModality/action-clean@v1.1.04142      # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it43      - uses: actions/checkout@v344        with:45          ref: ${{ github.head_ref }}  #Checking out head commit4647      - name: Read .env file48        uses: xom9ikk/dotenv@v1.0.24950      - name: Create Execution matrix51        uses: fabiocaccamo/create-matrix-action@v252        id: create_matrix53        with:54          matrix: |55            network {Opal}, runtime {opal}, features {opal-runtime}, mainnet_branch {${{ env.QUARTZ_MAINNET_TAG }}}56            network {Quartz}, runtime {quartz}, features {quartz-runtime}, mainnet_branch {${{ env.QUARTZ_MAINNET_TAG }}}57            network {Unique}, runtime {unique}, features {unique-runtime}, mainnet_branch {${{ env.UNIQUE_MAINNET_TAG }}}58596061  forkless-update-nodata:62    needs: prepare-execution-marix63    # The type of runner that the job will run on64    runs-on: [self-hosted-ci,medium]65    66    6768    timeout-minutes: 13806970    name: ${{ matrix.network }}7172    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.7374    strategy:75      matrix:76        include: ${{fromJson(needs.prepare-execution-marix.outputs.matrix)}}777879    steps:80      - name: Skip if pull request is in Draft81        # `if: github.event.pull_request.draft == true` should be kept here, at82        # the step level, rather than at the job level. The latter is not83        # recommended because when the PR is moved from "Draft" to "Ready to84        # review" the workflow will immediately be passing (since it was skipped),85        # even though it hasn't actually ran, since it takes a few seconds for86        # the workflow to start. This is also disclosed in:87        # https://github.community/t/dont-run-actions-on-draft-pull-requests/16817/1788        # That scenario would open an opportunity for the check to be bypassed:89        # 1. Get your PR approved90        # 2. Move it to Draft91        # 3. Push whatever commits you want92        # 4. Move it to "Ready for review"; now the workflow is passing (it was93        #    skipped) and "Check reviews" is also passing (it won't be updated94        #    until the workflow is finished)95        if: github.event.pull_request.draft == true96        run: exit 19798      - name: Clean Workspace99        uses: AutoModality/action-clean@v1.1.0100101      # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it102      - uses: actions/checkout@v3103        with:104          ref: ${{ github.head_ref }}  #Checking out head commit105106      - name: Read .env file107        uses: xom9ikk/dotenv@v1.0.2108109      - name: Generate ENV related extend file for docker-compose110        uses: cuchi/jinja2-action@v1.2.0111        with:112          template: .docker/docker-compose.tmp-forkless.j2113          output_file: .docker/docker-compose.${{ matrix.network }}.yml114          variables: |115            REPO_URL=${{ github.server_url }}/${{ github.repository }}.git116            RUST_TOOLCHAIN=${{ env.RUST_TOOLCHAIN }}117            POLKADOT_BUILD_BRANCH=${{ env.POLKADOT_BUILD_BRANCH }}118            POLKADOT_MAINNET_BRANCH=${{ env.POLKADOT_MAINNET_BRANCH }}119            MAINNET_TAG=${{ matrix.mainnet_tag }}120            MAINNET_BRANCH=${{ matrix.mainnet_branch }}121            FEATURE=${{ matrix.features }}122            RUNTIME=${{ matrix.runtime }}123            BRANCH=${{ github.head_ref }}124125      - name: Show build configuration126        run: cat .docker/docker-compose.${{ matrix.network }}.yml127128      - name: Generate launch-config.json129        uses: cuchi/jinja2-action@v1.2.0130        with:131          template: .docker/launch-config.j2132          output_file: .docker/launch-config-forkless.json133          variables: |134            FEATURE=${{ matrix.features }}135            RUNTIME=${{ matrix.runtime }}136137      - name: Show launch-config-forkless configuration138        run: cat .docker/launch-config-forkless.json139140141      - name: Build the stack142        run: docker-compose -f ".docker/docker-compose-forkless.yaml" -f ".docker/docker-compose.${{ matrix.network }}.yml" up -d --build  --force-recreate --timeout 300143144      - name: Check if docker logs consist logs related to Runtime Upgrade testing.145        if: success()146        run: |147          counter=160148          function check_container_status {149                docker inspect -f {{.State.Running}} node-parachain150          }151          function do_docker_logs {152                docker logs --details node-parachain  2>&1153          }154          function is_started {155                if [ "$(check_container_status)" == "true" ]; then156                    echo "Container: node-parachain RUNNING";157                    echo "Check Docker logs"158                    DOCKER_LOGS=$(do_docker_logs)159                    if [[ ${DOCKER_LOGS} = *"🛸 PARACHAINS' RUNTIME UPGRADE TESTING COMPLETE 🛸"* ]];then160                        echo "🛸 PARACHAINS' RUNTIME UPGRADE TESTING COMPLETE 🛸"161                        return 0162                        exit 1163                    else 164                        echo "🛸 PARACHAINS' RUNTIME UPGRADE TESTING COMPLETE 🛸 - Not found in logs output."165                        return 1166                        exit 1167                    fi168                else169                    echo "Container node-parachain not RUNNING"170                    echo "Halting all future checks"171                    exit 1172                fi173                exit 0174          }175          while ! is_started; do176                echo "Waiting for special message in log files "177                sleep 30s178                counter=$(( $counter - 1 ))179                echo "Counter: $counter"180                if [ "$counter" -gt "0" ]; then181                    continue182                else183                    break184                fi185                done186           echo "Halting script"187           exit 0188        shell: bash189190      - name: Collect Docker Logs191        if: success() || failure()192        uses: jwalton/gh-docker-logs@v2.2.0193        with:194          dest: './forkless-parachain-update-nodata-logs.${{ matrix.features }}'195          images: 'node-parachain' 196197      - name: Tar logs198        if: success() || failure()199        run: tar cvzf ./forkless-parachain-update-nodata-logs.${{ matrix.features }}.tgz ./forkless-parachain-update-nodata-logs.${{ matrix.features }}200201      - name: Upload logs to GitHub202        if: success() || failure()203        uses: actions/upload-artifact@master204        with:205          name: forkless-parachain-update-nodata-logs.${{ matrix.features }}.tgz206          path: ./forkless-parachain-update-nodata-logs.${{ matrix.features }}.tgz207208      - name: Stop running containers209        if: always()                   # run this step always210        run: docker-compose -f ".docker/docker-compose-forkless.yaml" -f ".docker/docker-compose.${{ matrix.network }}.yml" down
modified.github/workflows/node_build_test.ymldiffbeforeafterboth
--- a/.github/workflows/node_build_test.yml
+++ b/.github/workflows/node_build_test.yml
@@ -1,4 +1,4 @@
-name: Develop - Build & test
+name: Yarn test dev
 
 # Controls when the action will run.
 on:
@@ -19,13 +19,18 @@
 env:
   REPO_URL: ${{ github.server_url }}/${{ github.repository }}
 
+concurrency: 
+  group: ${{ github.workflow }}-${{ github.ref }}
+  cancel-in-progress: true
+
 # A workflow run is made up of one or more jobs that can run sequentially or in parallel
 jobs:
   dev_build_test:
     # The type of runner that the job will run on
-    runs-on: self-hosted-ci
+    runs-on: [self-hosted-ci,medium]
+    timeout-minutes: 1380
 
-    name: Build Container, Spin it Up an test
+    name: ${{ matrix.network }}
 
     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.
 
modified.github/workflows/tests_codestyle.ymldiffbeforeafterboth
--- a/.github/workflows/tests_codestyle.yml
+++ b/.github/workflows/tests_codestyle.yml
@@ -10,6 +10,10 @@
       - synchronize
       - ready_for_review
 
+concurrency: 
+  group: ${{ github.workflow }}-${{ github.ref }}
+  cancel-in-progress: true
+
 jobs:
   code_style:
     runs-on: self-hosted-ci
modified.github/workflows/try-runtime.ymldiffbeforeafterboth
--- a/.github/workflows/try-runtime.yml
+++ b/.github/workflows/try-runtime.yml
@@ -1,4 +1,4 @@
-name: Try Runtime
+name: try-runtime
 
 # Controls when the action will run.
 on:
@@ -19,26 +19,30 @@
 env:
   REPO_URL: ${{ github.server_url }}/${{ github.repository }}
 
+concurrency: 
+  group: ${{ github.workflow }}-${{ github.ref }}
+  cancel-in-progress: true
+
 # A workflow run is made up of one or more jobs that can run sequentially or in parallel
 jobs:
   try-runtime:
     # The type of runner that the job will run on
     runs-on: self-hosted-ci
-
-    name: ${{ matrix.network }} - Try-runtime
+    
+    name: ${{ matrix.network }}
 
     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.
 
     strategy:
       matrix:
         include:
-          - network: Opal
+          - network: opal
             features: try-runtime,opal-runtime
             fork_from_address: wss://eu-ws-opal.unique.network:443
-          - network: Quartz
+          - network: quartz
             features: try-runtime,quartz-runtime
             fork_from_address: wss://eu-ws-quartz.unique.network:443
-          - network: Unique
+          - network: unique
             features: try-runtime,unique-runtime
             fork_from_address: wss://eu-ws.unique.network:443
 
@@ -79,37 +83,15 @@
           template: .docker/docker-compose.try-runtime.j2
           output_file: .docker/docker-compose.try-runtime.${{ matrix.network }}.yml
           variables: |
-            REPO_URL=${{ github.server_url }}/${{ github.repository }}.git
             RUST_TOOLCHAIN=${{ env.RUST_TOOLCHAIN }}
             FEATURE=${{ matrix.features }}
-            BRANCH=${{ github.head_ref }}
             FORK_FROM=${{ matrix.fork_from_address }}
 
       - name: Show build configuration
         run: cat .docker/docker-compose.try-runtime.${{ matrix.network }}.yml
 
-
       - name: Build the stack
-        run: docker-compose -f ".docker/docker-compose-try-runtime.yml" -f ".docker/docker-compose.try-runtime.${{ matrix.network }}.yml" up -d --build  --force-recreate --timeout 300
-
-
-      - name: Collect Docker Logs
-        if: success() || failure()
-        uses: jwalton/gh-docker-logs@v2.2.0
-        with:
-          dest: './try-runtime-logs.${{ matrix.features }}'
-          images: 'try-runtime' 
-
-      - name: Tar logs
-        if: success() || failure()
-        run: tar cvzf ./try-runtime-logs.${{ matrix.features }}.tgz ./try-runtime-logs.${{ matrix.features }}
-
-      - name: Upload logs to GitHub
-        if: success() || failure()
-        uses: actions/upload-artifact@master
-        with:
-          name: try-runtime-logs.${{ matrix.features }}.tgz
-          path: ./try-runtime-logs.${{ matrix.features }}.tgz
+        run: docker-compose -f ".docker/docker-compose-try-runtime.yml" -f ".docker/docker-compose.try-runtime.${{ matrix.network }}.yml" up -d --build  --force-recreate --timeout 300 --remove-orphans
 
       - name: Stop running containers
         if: always()                   # run this step always
modifiednode/cli/Cargo.tomldiffbeforeafterboth
--- a/node/cli/Cargo.toml
+++ b/node/cli/Cargo.toml
@@ -266,6 +266,7 @@
 
 [dependencies.opal-runtime]
 path = '../../runtime/opal'
+optional = true
 
 [dependencies.up-data-structs]
 path = "../../primitives/data-structs"
@@ -320,11 +321,15 @@
 rmrk-rpc = { path = "../../primitives/rmrk-rpc" }
 
 [features]
-default = []
+default = ["opal-runtime"]
 runtime-benchmarks = [
     'unique-runtime?/runtime-benchmarks',
     'quartz-runtime?/runtime-benchmarks',
     'opal-runtime/runtime-benchmarks',
     'polkadot-service/runtime-benchmarks',
 ]
-try-runtime = []
+try-runtime = [
+    'unique-runtime?/try-runtime',
+    'quartz-runtime?/try-runtime',
+    'opal-runtime?/try-runtime',
+]