difftreelog
change TAG to BRANCH in workflows
in: master
5 files changed
.envdiffbeforeafterboth--- a/.env
+++ b/.env
@@ -5,19 +5,19 @@
STATEMINT_BUILD_BRANCH=release-parachains-v9271
ACALA_BUILD_BRANCH=2.9.6
MOONBEAM_BUILD_BRANCH=v0.26.1
-UNIQUE_MAINNET_TAG=v924010-old-tests-fixes
+UNIQUE_MAINNET_BRANCH=v924010-old-tests-fixes
UNIQUE_REPLICA_FROM=wss://eu-ws.unique.network:443
KUSAMA_MAINNET_BRANCH=release-v0.9.30
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-old-tests-fixes
+QUARTZ_MAINNET_BRANCH=quartz-v924012-2-old-tests-fixes
QUARTZ_REPLICA_FROM=wss://eu-ws-quartz.unique.network:443
UNQWND_MAINNET_BRANCH=release-v0.9.30
WESTMINT_BUILD_BRANCH=parachains-v9290
-OPAL_MAINNET_TAG=quartz-v924012-2-old-tests-fixes
+OPAL_MAINNET_BRANCH=quartz-v924012-2-old-tests-fixes
OPAL_REPLICA_FROM=wss://eu-ws-opal.unique.network:443
POLKADOT_LAUNCH_BRANCH=unique-network
.github/workflows/execution-matrix.ymldiffbeforeafterboth1name: Reusable workflow23on:4 workflow_call:5 # Map the workflow outputs to job outputs6 outputs:7 matrix:8 description: "The first output string"9 value: ${{ jobs.create-matrix.outputs.matrix_output }}1011jobs:1213 create-marix:1415 name: Prepare execution matrix1617 runs-on: self-hosted-ci18 outputs:19 matrix_output: ${{ steps.create_matrix.outputs.matrix }}2021 steps:2223 - name: Clean Workspace24 uses: AutoModality/action-clean@v1.1.02526 # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it27 - uses: actions/checkout@v328 with:29 ref: ${{ github.head_ref }} #Checking out head commit3031 - name: Read .env file32 uses: xom9ikk/dotenv@v23334 - name: Create Execution matrix35 uses: CertainLach/create-matrix-action@v336 id: create_matrix37 with:38 matrix: |39 network {opal}, runtime {opal}, features {opal-runtime}, mainnet_branch {${{ env.OPAL_MAINNET_TAG }}}, replica_from_address {${{ env.OPAL_REPLICA_FROM }}}40 network {quartz}, runtime {quartz}, features {quartz-runtime}, mainnet_branch {${{ env.QUARTZ_MAINNET_TAG }}}, replica_from_address {${{ env.QUARTZ_REPLICA_FROM }}}41 network {unique}, runtime {unique}, features {unique-runtime}, mainnet_branch {${{ env.UNIQUE_MAINNET_TAG }}}, replica_from_address {${{ env.UNIQUE_REPLICA_FROM }}}42.github/workflows/forkless-update-data.ymldiffbeforeafterboth--- a/.github/workflows/forkless-update-data.yml
+++ b/.github/workflows/forkless-update-data.yml
@@ -35,9 +35,9 @@
id: create_matrix
with:
matrix: |
- network {opal}, mainnet_branch {${{ env.OPAL_MAINNET_TAG }}}, replica_from_address {${{ env.OPAL_REPLICA_FROM }}}
- network {quartz}, mainnet_branch {${{ env.QUARTZ_MAINNET_TAG }}}, replica_from_address {${{ env.QUARTZ_REPLICA_FROM }}}
- network {unique}, mainnet_branch {${{ env.UNIQUE_MAINNET_TAG }}}, replica_from_address {${{ env.UNIQUE_REPLICA_FROM }}}
+ network {opal}, mainnet_branch {${{ env.OPAL_MAINNET_BRANCH }}}, replica_from_address {${{ env.OPAL_REPLICA_FROM }}}
+ network {quartz}, mainnet_branch {${{ env.QUARTZ_MAINNET_BRANCH }}}, replica_from_address {${{ env.QUARTZ_REPLICA_FROM }}}
+ network {unique}, mainnet_branch {${{ env.UNIQUE_MAINNET_BRANCH }}}, replica_from_address {${{ env.UNIQUE_REPLICA_FROM }}}
forkless-update-data:
needs: execution-marix
.github/workflows/forkless-update-nodata.ymldiffbeforeafterboth--- a/.github/workflows/forkless-update-nodata.yml
+++ b/.github/workflows/forkless-update-nodata.yml
@@ -34,9 +34,9 @@
id: create_matrix
with:
matrix: |
- network {opal}, mainnet_branch {${{ env.OPAL_MAINNET_TAG }}}
- network {quartz}, mainnet_branch {${{ env.QUARTZ_MAINNET_TAG }}}
- network {unique}, mainnet_branch {${{ env.UNIQUE_MAINNET_TAG }}}
+ network {opal}, mainnet_branch {${{ env.OPAL_MAINNET_BRANCH }}}
+ network {quartz}, mainnet_branch {${{ env.QUARTZ_MAINNET_BRANCH }}}
+ network {unique}, mainnet_branch {${{ env.UNIQUE_MAINNET_BRANCH }}}
forkless-update-nodata:
.github/workflows/integration-tests.ymldiffbeforeafterboth--- a/.github/workflows/integration-tests.yml
+++ b/.github/workflows/integration-tests.yml
@@ -35,9 +35,9 @@
id: create_matrix
with:
matrix: |
- network {opal}, mainnet_branch {${{ env.OPAL_MAINNET_TAG }}}
- network {quartz}, mainnet_branch {${{ env.QUARTZ_MAINNET_TAG }}}
- network {unique}, mainnet_branch {${{ env.UNIQUE_MAINNET_TAG }}}
+ network {opal}, mainnet_branch {${{ env.OPAL_MAINNET_BRANCH }}}
+ network {quartz}, mainnet_branch {${{ env.QUARTZ_MAINNET_BRANCH }}}
+ network {unique}, mainnet_branch {${{ env.UNIQUE_MAINNET_BRANCH }}}
parallel-test:
needs: nodes-execution-matrix