1234on:5 workflow_call:6789env:10 REPO_URL: ${{ github.server_url }}/${{ github.repository }}111213jobs:14 execution-marix:1516 name: Prepare execution matrix1718 runs-on: self-hosted-ci19 outputs:20 matrix: ${{ steps.create_matrix.outputs.matrix }}2122 steps:2324 - name: Clean Workspace25 uses: AutoModality/action-clean@v1.1.02627 28 - uses: actions/checkout@v329 with:30 ref: ${{ github.head_ref }} 3132 - name: Read .env file33 uses: xom9ikk/dotenv@v1.0.23435 - name: Create Execution matrix36 uses: fabiocaccamo/create-matrix-action@v237 id: create_matrix38 with:39 matrix: |40 network {opal}, runtime {opal}, features {opal-runtime}, mainnet_branch {${{ env.QUARTZ_MAINNET_TAG }}}41 network {quartz}, runtime {quartz}, features {quartz-runtime}, mainnet_branch {${{ env.QUARTZ_MAINNET_TAG }}}42 network {unique}, runtime {unique}, features {unique-runtime}, mainnet_branch {${{ env.UNIQUE_MAINNET_TAG }}}434445 forkless-update-nodata:46 needs: execution-marix47 48 runs-on: [self-hosted-ci,large]4950 timeout-minutes: 13805152 name: ${{ matrix.network }}5354 continue-on-error: true 5556 strategy:57 matrix:58 include: ${{fromJson(needs.execution-marix.outputs.matrix)}} 5960 steps:61 - name: Clean Workspace62 uses: AutoModality/action-clean@v1.1.06364 65 - uses: actions/checkout@v366 with:67 ref: ${{ github.head_ref }} 6869 - name: Read .env file70 uses: xom9ikk/dotenv@v1.0.27172 - name: Generate ENV related extend file for docker-compose73 uses: cuchi/jinja2-action@v1.2.074 with:75 template: .docker/docker-compose.tmp-forkless-nodata.j276 output_file: .docker/docker-compose.${{ matrix.network }}.yml77 variables: |78 REPO_URL=${{ github.server_url }}/${{ github.repository }}.git79 RUST_TOOLCHAIN=${{ env.RUST_TOOLCHAIN }}80 POLKADOT_BUILD_BRANCH=${{ env.POLKADOT_BUILD_BRANCH }}81 POLKADOT_MAINNET_BRANCH=${{ env.POLKADOT_MAINNET_BRANCH }}82 MAINNET_TAG=${{ matrix.mainnet_tag }}83 MAINNET_BRANCH=${{ matrix.mainnet_branch }}84 FEATURE=${{ matrix.features }}85 RUNTIME=${{ matrix.runtime }}86 BRANCH=${{ github.head_ref }}8788 - name: Show build configuration89 run: cat .docker/docker-compose.${{ matrix.network }}.yml9091 - name: Generate launch-config-forkless-nodata.json92 uses: cuchi/jinja2-action@v1.2.093 with:94 template: .docker/forkless-config/launch-config-forkless-nodata.j295 output_file: .docker/launch-config-forkless-nodata.json96 variables: |97 FEATURE=${{ matrix.features }}98 RUNTIME=${{ matrix.runtime }}99100 - name: Show launch-config-forkless configuration101 run: cat .docker/launch-config-forkless-nodata.json102103104 - name: Build the stack105 run: docker-compose -f ".docker/docker-compose-forkless.yml" -f ".docker/docker-compose.${{ matrix.network }}.yml" up -d --build --force-recreate --timeout 300106107 - name: Check if docker logs consist logs related to Runtime Upgrade testing.108 if: success()109 run: |110 counter=160111 function check_container_status {112 docker inspect -f {{.State.Running}} node-parachain113 }114 function do_docker_logs {115 docker logs --details node-parachain 2>&1116 }117 function is_started {118 if [ "$(check_container_status)" == "true" ]; then119 echo "Container: node-parachain RUNNING";120 echo "Check Docker logs"121 DOCKER_LOGS=$(do_docker_logs)122 if [[ ${DOCKER_LOGS} = *"🛸 PARACHAINS' RUNTIME UPGRADE TESTING COMPLETE 🛸"* ]];then123 echo "🛸 PARACHAINS' RUNTIME UPGRADE TESTING COMPLETE 🛸"124 return 0125 elif [[ ${DOCKER_LOGS} = *"🚧 PARACHAINS' RUNTIME UPGRADE TESTING FAILED 🚧"* ]];then126 echo "🚧 PARACHAINS' RUNTIME UPGRADE TESTING FAILED 🚧"127 return 1128 else129 echo "Message not found in logs output, repeating..."130 return 1131 fi132 else133 echo "Container node-parachain not RUNNING"134 echo "Halting all future checks"135 exit 1136 fi137 exit 0138 }139 while ! is_started; do140 echo "Waiting for special message in log files "141 sleep 30s142 counter=$(( $counter - 1 ))143 echo "Counter: $counter"144 if [ "$counter" -gt "0" ]; then145 continue146 else147 break148 fi149 done150 echo "Halting script"151 exit 0152 shell: bash153154 - name: Collect Docker Logs155 if: success() || failure()156 uses: jwalton/gh-docker-logs@v2.2.0157 with:158 dest: './forkless-parachain-upgrade-nodata-logs.${{ matrix.features }}'159 images: 'node-parachain'160161 - name: Show docker logs162 if: success() || failure()163 run: cat './forkless-parachain-upgrade-nodata-logs.${{ matrix.features }}/node-parachain.log'164165 - name: Stop running containers166 if: always() 167 run: docker-compose -f ".docker/docker-compose-forkless.yml" -f ".docker/docker-compose.${{ matrix.network }}.yml" down