12345on:6 workflow_call:78910jobs:1112 prepare-execution-marix:1314 name: Prepare execution matrix1516 runs-on: self-hosted-ci17 outputs:18 matrix: ${{ steps.create_matrix.outputs.matrix }}1920 steps:2122 - name: Clean Workspace23 uses: AutoModality/action-clean@v1.1.02425 26 - uses: actions/checkout@v3.1.027 with:28 ref: ${{ github.head_ref }} 2930 - name: Read .env file31 uses: xom9ikk/dotenv@v23233 - name: Create Execution matrix34 uses: CertainLach/create-matrix-action@v435 id: create_matrix36 with:37 matrix: |38 network {quartz}, wasm_name {quartz}, mainnet_branch {${{ env.QUARTZ_MAINNET_BRANCH }}}, replica_from_address {${{ env.QUARTZ_REPLICA_FROM }}}, relay_branch {${{ env.KUSAMA_MAINNET_BRANCH }}}39 network {unique}, wasm_name {unique}, mainnet_branch {${{ env.UNIQUE_MAINNET_BRANCH }}}, replica_from_address {${{ env.UNIQUE_REPLICA_FROM }}}, relay_branch {${{ env.POLKADOT_MAINNET_BRANCH }}}40 network {opal}, wasm_name {opal}, mainnet_branch {${{ env.OPAL_MAINNET_BRANCH }}}, replica_from_address {${{ env.OPAL_REPLICA_FROM }}}, relay_branch {${{ env.UNIQUEWEST_MAINNET_BRANCH }}}41 network {sapphire}, wasm_name {quartz}, mainnet_branch {${{ env.SAPPHIRE_MAINNET_BRANCH }}}, replica_from_address {${{ env.SAPPHIRE_REPLICA_FROM }}}, relay_branch {${{ env.UNIQUEEAST_MAINNET_BRANCH }}}4243 forkless-data-build:44 needs: prepare-execution-marix45 46 runs-on: [self-hosted-ci,large]47 timeout-minutes: 13804849 name: ${{ matrix.network }}-data-build50 strategy:51 matrix:52 include: ${{fromJson(needs.prepare-execution-marix.outputs.matrix)}}5354 continue-on-error: true 5556 steps:57 - name: Clean Workspace58 uses: AutoModality/action-clean@v1.1.05960 61 - uses: actions/checkout@v3.1.062 with:63 ref: ${{ github.head_ref }} 6465 - name: Read .env file66 uses: xom9ikk/dotenv@v26768 69 - name: Prepare SHA70 uses: ./.github/actions/prepare7172 73 - name: Generate ENV related extend Dockerfile file74 uses: cuchi/jinja2-action@v1.2.075 with:76 template: .docker/Dockerfile-parachain-upgrade-data.j277 output_file: .docker/Dockerfile-parachain-upgrade-data.${{ matrix.network }}.yml78 variables: |79 RUST_TOOLCHAIN=${{ env.RUST_TOOLCHAIN }}80 NETWORK=${{ matrix.network }}81 MAINNET_BRANCH=${{ matrix.mainnet_branch }}82 WASM_NAME=${{ matrix.wasm_name }}83 POLKADOT_BUILD_BRANCH=${{ matrix.relay_branch }}84 POLKADOT_LAUNCH_BRANCH=${{ env.POLKADOT_LAUNCH_BRANCH }}85 REPLICA_FROM=${{ matrix.replica_from_address }}86 CHAINQL=${{ env.CHAINQL }}8788 - name: Show build configuration89 run: cat .docker/Dockerfile-parachain-upgrade-data.${{ matrix.network }}.yml9091 - name: Generate launch-config-forkless-data.json92 uses: cuchi/jinja2-action@v1.2.093 with:94 template: .docker/forkless-config/launch-config-forkless-data.j295 output_file: .docker/forkless-config/launch-config-forkless-data.json96 variables: |97 WASM_NAME=${{ matrix.wasm_name }}98 RELAY_CHAIN_TYPE=${{ env.RELAY_CHAIN_TYPE }}99 REPLICA_FROM=${{ matrix.replica_from_address }} 100101 - name: Show launch-config-forkless configuration102 run: cat .docker/forkless-config/launch-config-forkless-data.json103104 - name: Run find-and-replace to remove slashes from branch name105 uses: mad9000/actions-find-and-replace-string@4106 id: branchname107 with:108 source: ${{ github.head_ref }}109 find: '/'110 replace: '-'111112 - name: Set build SHA113 shell: bash114 run: |115 echo "BUILD_SHA=${LAST_COMMIT_SHA:0:8}" >> $GITHUB_ENV116117 - name: Build the stack118 run: cd .docker/ && docker build --no-cache --file ./Dockerfile-parachain-upgrade-data.${{ matrix.network }}.yml --tag uniquenetwork/ci-forkless-data-local:${{ matrix.network }}-${{ steps.branchname.outputs.value }}-$BUILD_SHA ../119120 - name: Log in to Docker Hub121 uses: docker/login-action@v2.1.0122 with:123 username: ${{ secrets.CORE_DOCKERHUB_USERNAME }}124 password: ${{ secrets.CORE_DOCKERHUB_TOKEN }}125126 - name: Push docker image version127 run: docker push uniquenetwork/ci-forkless-data-local:${{ matrix.network }}-${{ steps.branchname.outputs.value }}-$BUILD_SHA128129 - name: Remove builder cache130 if: always() 131 run: |132 docker builder prune -f133 docker system prune -f134135 forkless-data-tests:136 needs: [prepare-execution-marix, forkless-data-build]137 138 runs-on: [self-hosted-ci, large]139140 timeout-minutes: 600141142 name: ${{ matrix.network }}-data-tests143144 continue-on-error: true 145146 strategy:147 matrix:148 include: ${{fromJson(needs.prepare-execution-marix.outputs.matrix)}}149150 steps:151 - name: Skip if pull request is in Draft152 if: github.event.pull_request.draft == true153 run: exit 1154155 - name: Clean Workspace156 uses: AutoModality/action-clean@v1.1.0157158 159 - uses: actions/checkout@v3.1.0160 with:161 ref: ${{ github.head_ref }} 162163 - name: Prepare164 uses: ./.github/actions/prepare165166 - name: Set build SHA167 shell: bash168 run: |169 echo "BUILD_SHA=${LAST_COMMIT_SHA:0:8}" >> $GITHUB_ENV170171 - name: Run find-and-replace to remove slashes from branch name172 uses: mad9000/actions-find-and-replace-string@4173 id: branchname174 with:175 source: ${{ github.head_ref }}176 find: '/'177 replace: '-'178179 - name: Read .env file180 uses: xom9ikk/dotenv@v2181182 - name: Generate ENV related extend file for docker-compose183 uses: cuchi/jinja2-action@v1.2.0184 with:185 template: .docker/docker-compose.forkless-data.j2186 output_file: .docker/docker-compose.forkless-data.${{ matrix.network }}.yml187 variables: |188 NETWORK=${{ matrix.network }}189 BUILD_TAG=${{ steps.branchname.outputs.value }}-$BUILD_SHA190191 - name: Show build configuration192 run: cat .docker/docker-compose.forkless-data.${{ matrix.network }}.yml193194 - name: Log in to Docker Hub195 uses: docker/login-action@v2.1.0196 with:197 username: ${{ secrets.CORE_DOCKERHUB_USERNAME }}198 password: ${{ secrets.CORE_DOCKERHUB_TOKEN }}199200 - name: Build the stack201 run: docker-compose -f ".docker/docker-compose.forkless-data.${{ matrix.network }}.yml" up -d --remove-orphans --force-recreate --timeout 300202203 - uses: actions/setup-node@v3.5.1204 with:205 node-version: 16206207 - name: Check if docker logs consist logs related to Runtime Upgrade testing.208 if: success()209 run: |210 counter=160211 function check_container_status {212 docker inspect -f {{.State.Running}} forkless-data213 }214 function do_docker_logs {215 docker logs --details forkless-data 2>&1216 }217 function is_started {218 if [ "$(check_container_status)" == "true" ]; then219 echo "Container: forkless-data RUNNING";220 echo "Check Docker logs"221 DOCKER_LOGS=$(do_docker_logs)222 if [[ ${DOCKER_LOGS} = *"🛸 PARACHAINS' RUNTIME UPGRADE TESTING COMPLETE 🛸"* ]];then223 echo "🛸 PARACHAINS' RUNTIME UPGRADE TESTING COMPLETE 🛸"224 return 0225 elif [[ ${DOCKER_LOGS} = *"🚧 PARACHAINS' RUNTIME UPGRADE TESTING FAILED 🚧"* ]];then226 echo "🚧 PARACHAINS' RUNTIME UPGRADE TESTING FAILED 🚧"227 return 1228 else229 echo "Message not found in logs output, repeating..."230 return 1231 fi232 else233 echo "Container forkless-data not RUNNING"234 echo "Halting all future checks"235 exit 1236 fi237 exit 0238 }239 while ! is_started; do240 echo "Waiting for special message in log files "241 sleep 30s242 counter=$(( $counter - 1 ))243 echo "Counter: $counter"244 if [ "$counter" -gt "0" ]; then245 continue246 else247 break248 fi249 done250 echo "Halting script"251 exit 0252 shell: bash253254 - name: Collect Docker Logs255 if: success() || failure()256 uses: jwalton/gh-docker-logs@v2.2.1257 with:258 dest: './forkless-parachain-upgrade-data-logs.${{ matrix.features }}'259260 - name: Show Docker logs261 if: success() || failure()262 run: cat './forkless-parachain-upgrade-data-logs.${{ matrix.features }}/forkless-data.log'263264 - name: Stop running containers265 if: always() 266 run: docker-compose -f ".docker/docker-compose.forkless-data.${{ matrix.network }}.yml" down --volumes267268 - name: Remove builder cache269 if: always() 270 run: |271 docker builder prune -f -a272 docker system prune -f273 docker image prune -f -a