git.delta.rocks / unique-network / refs/commits / 837dcd6dcc35

difftreelog

source

.github/workflows/node-only-update_v2.yml9.9 KiBsourcehistory
1name: nodes-only update23# Controls when the action will run.4on:5  workflow_call:6#Define Workflow variables7env:8  REPO_URL: ${{ github.server_url }}/${{ github.repository }}910# A workflow run is made up of one or more jobs that can run sequentially or in parallel11jobs:1213  execution-marix:1415    name: execution matrix1617    runs-on: self-hosted-ci18    outputs:19      matrix: ${{ 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@v1.0.23334      - name: Create Execution matrix35        uses: fabiocaccamo/create-matrix-action@v236        id: create_matrix37        with:38          matrix: |39            network {opal}, runtime {opal}, features {opal-runtime}, mainnet_branch {${{ env.QUARTZ_MAINNET_TAG }}}40            network {quartz}, runtime {quartz}, features {quartz-runtime}, mainnet_branch {${{ env.QUARTZ_MAINNET_TAG }}}41            network {unique}, runtime {unique}, features {unique-runtime}, mainnet_branch {${{ env.UNIQUE_MAINNET_TAG }}}42434445  forkless-update-nodata:46    needs: execution-marix47    # The type of runner that the job will run on48    runs-on: [self-hosted-ci,large]49505152    timeout-minutes: 13805354    name: ${{ matrix.network }}5556    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.5758    strategy:59      matrix:60        include: ${{fromJson(needs.prepare-execution-marix.outputs.matrix)}}6162    steps:6364      - name: Clean Workspace65        uses: AutoModality/action-clean@v1.1.06667      # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it68      - uses: actions/checkout@v369        with:70          ref: ${{ github.head_ref }}  #Checking out head commit7172      - name: Read .env file73        uses: xom9ikk/dotenv@v1.0.27475      - name: Generate ENV related extend file for docker-compose76        uses: cuchi/jinja2-action@v1.2.077        with:78          template: .docker/docker-compose.tmp-node.j279          output_file: .docker/docker-compose.node.${{ matrix.network }}.yml80          variables: |81            REPO_URL=${{ github.server_url }}/${{ github.repository }}.git82            RUST_TOOLCHAIN=${{ env.RUST_TOOLCHAIN }}83            POLKADOT_BUILD_BRANCH=${{ env.POLKADOT_BUILD_BRANCH }}84            POLKADOT_MAINNET_BRANCH=${{ env.POLKADOT_MAINNET_BRANCH }}85            MAINNET_TAG=${{ matrix.mainnet_tag }}86            MAINNET_BRANCH=${{ matrix.mainnet_branch }}87            FEATURE=${{ matrix.features }}88            RUNTIME=${{ matrix.runtime }}89            BRANCH=${{ github.head_ref }}9091      - name: Show build configuration92        run: cat .docker/docker-compose.node.${{ matrix.network }}.yml9394      - name: Generate launch-config-forkless-nodata.json95        uses: cuchi/jinja2-action@v1.2.096        with:97          template: .docker/forkless-config/launch-config-forkless-nodata.j298          output_file: .docker/launch-config-forkless-nodata.json99          variables: |100            FEATURE=${{ matrix.features }}101            RUNTIME=${{ matrix.runtime }}102103      - name: Show launch-config-forkless configuration104        run: cat .docker/launch-config-forkless-nodata.json105106      - uses: actions/setup-node@v3107        with:108          node-version: 16109110      - name: Build the stack111        run: docker-compose -f ".docker/docker-compose-forkless.yml" -f ".docker/docker-compose.node.${{ matrix.network }}.yml" up -d --build --remove-orphans --force-recreate --timeout 300112113      #  🚀 POLKADOT LAUNCH COMPLETE 🚀114      - name: Check if docker logs consist messages related to testing of Node Parachain Upgrade.115        if: success()116        run: |117          counter=160118          function check_container_status {119                docker inspect -f {{.State.Running}} node-parachain120          }121          function do_docker_logs {122                docker logs --details node-parachain  2>&1123          }124          function is_started {125                if [ "$(check_container_status)" == "true" ]; then126                        echo "Container: node-parachain RUNNING";127                        echo "Check Docker logs"128                        DOCKER_LOGS=$(do_docker_logs)129                        if [[ ${DOCKER_LOGS} = *"POLKADOT LAUNCH COMPLETE"* ]];then130                                echo "🚀 POLKADOT LAUNCH COMPLETE 🚀"131                                return 0132                        else133                                echo "Message not found in logs output, repeating..."134                                return 1135                        fi136                else137                        echo "Container node-parachain NOT RUNNING"138                        echo "Halting all future checks"139                        exit 1140                fi141          echo "something goes wrong"142          exit 1143          }144          while ! is_started; do145                echo "Waiting for special message in log files "146                sleep 30s147                counter=$(( $counter - 1 ))148                echo "Counter: $counter"149                if [ "$counter" -gt "0" ]; then150                         continue151                else152                         break153                fi154          done155          echo "Halting script"156          exit 0157        shell: bash158159      - name: Run tests before Node Parachain upgrade160        working-directory: tests161        run: |162          yarn install163          yarn add mochawesome164          node scripts/readyness.js165          echo "Ready to start tests"166          NOW=$(date +%s) && yarn test --reporter mochawesome --reporter-options reportFilename=test-${NOW}167        env:168          RPC_URL: http://127.0.0.1:9933/169170      - name: Test Report Before Node upgrade171        uses: phoenix-actions/test-reporting@v8172        id: test-report-before173        if: success() || failure()    # run this step even if previous step failed174        with:175          name: Tests before node upgrade ${{ matrix.network }}            # Name of the check run which will be created176          path: tests/mochawesome-report/test-*.json    # Path to test results177          reporter: mochawesome-json178          fail-on-error: 'false'179180      - name: Send SIGUSR1 to polkadotlaunch process181        if: success() || failure()182        run: |183          #Get PID of polkadot-launch184          PID=$(docker exec node-parachain pidof 'polkadot-launch')185          echo "Polkadot-launch PID: $PID"186          #Send SIGUSR1 signal to $PID187          docker exec node-parachain kill -SIGUSR1 ${PID}188189      #  🌗 All parachain collators restarted with the new binaries.190      - name: Check if docker logs consist messages related to testing of Node Parachain Upgrade.191        if: success()192        run: |193          counter=160194          function check_container_status {195                docker inspect -f {{.State.Running}} node-parachain196          }197          function do_docker_logs {198                docker logs --details node-parachain  2>&1199          }200          function is_started {201                if [ "$(check_container_status)" == "true" ]; then202                        echo "Container: node-parachain RUNNING";203                        echo "Check Docker logs"204                        DOCKER_LOGS=$(do_docker_logs)205                        if [[ ${DOCKER_LOGS} = *"All parachain collators restarted with the new binaries."* ]];then206                                echo "🌗 All parachain collators restarted with the new binaries."207                                return 0208                        else209                                echo "Message not found in logs output, repeating..."210                                return 1211                        fi212                else213                        echo "Container node-parachain NOT RUNNING"214                        echo "Halting all future checks"215                        exit 1216                fi217          echo "something goes wrong"218          exit 1219          }220          while ! is_started; do221                echo "Waiting for special message in log files "222                sleep 30s223                counter=$(( $counter - 1 ))224                echo "Counter: $counter"225                if [ "$counter" -gt "0" ]; then226                         continue227                else228                         break229                fi230          done231          echo "Halting script"232          exit 0233        shell: bash234235      - name: Run tests after Node Parachain upgrade236        working-directory: tests237        run: |238          yarn install239          yarn add mochawesome240          node scripts/readyness.js241          echo "Ready to start tests"242          NOW=$(date +%s) && yarn test --reporter mochawesome --reporter-options reportFilename=test-${NOW}243        env:244          RPC_URL: http://127.0.0.1:9933/245246      - name: Test Report After Node upgrade247        uses: phoenix-actions/test-reporting@v8248        id: test-report-after249        if: success() || failure()    # run this step even if previous step failed250        with:251          name: Tests after node upgrade ${{ matrix.network }}            # Name of the check run which will be created252          path: tests/mochawesome-report/test-*.json    # Path to test results253          reporter: mochawesome-json254          fail-on-error: 'false'255256257      - name: Stop running containers258        if: always()                   # run this step always259        run: docker-compose -f ".docker/docker-compose-forkless.yml" -f ".docker/docker-compose.node.${{ matrix.network }}.yml" down --volumes260261      - name: Remove builder cache262        if: always()                   # run this step always263        run: |264          docker builder prune -f265          docker system prune -f266267      - name: Clean Workspace268        if: always()269        uses: AutoModality/action-clean@v1.1.0