difftreelog
update forkless with data workflow
in: master
2 files changed
.docker/docker-compose.tmp-forkless-data.j2diffbeforeafterboth7 - "RUST_TOOLCHAIN={{ RUST_TOOLCHAIN }}"7 - "RUST_TOOLCHAIN={{ RUST_TOOLCHAIN }}"8 - "BRANCH={{ BRANCH }}"8 - "BRANCH={{ BRANCH }}"9 - "REPO_URL={{ REPO_URL }}"9 - "REPO_URL={{ REPO_URL }}"10 - "NETWORK"={{ NETWORK }}"10 - "NETWORK={{ NETWORK }}"11 - "POLKADOT_BUILD_BRANCH={{ POLKADOT_BUILD_BRANCH }}"11 - "POLKADOT_BUILD_BRANCH={{ POLKADOT_BUILD_BRANCH }}"12 - "POLKADOT_LAUNCH_BRANCH={{ POLKADOT_LAUNCH_BRANCH }}"12 - "POLKADOT_LAUNCH_BRANCH={{ POLKADOT_LAUNCH_BRANCH }}"13 - "MAINNET_TAG={{ MAINNET_TAG }}"13 - "MAINNET_TAG={{ MAINNET_TAG }}".github/workflows/forkless-update-data.ymldiffbeforeafterboth69 uses: cuchi/jinja2-action@v1.2.068 uses: cuchi/jinja2-action@v1.2.070 with:69 with:71 template: .docker/docker-compose.tmp-forkless-data.j270 template: .docker/docker-compose.tmp-forkless-data.j272 output_file: .docker/docker-compose.${{ matrix.network }}.yml71 output_file: .docker/docker-compose-forkless-data.${{ matrix.network }}.yml73 variables: |72 variables: |74 REPO_URL=${{ github.server_url }}/${{ github.repository }}.git73 REPO_URL=${{ github.server_url }}/${{ github.repository }}.git75 RUST_TOOLCHAIN=${{ env.RUST_TOOLCHAIN }}74 RUST_TOOLCHAIN=${{ env.RUST_TOOLCHAIN }}83 REPLICA_FROM=${{ matrix.replica_from_address }}82 REPLICA_FROM=${{ matrix.replica_from_address }}848385 - name: Show build configuration84 - name: Show build configuration86 run: cat .docker/docker-compose.${{ matrix.network }}.yml85 run: cat .docker/docker-compose-forkless-data.${{ matrix.network }}.yml878688 - name: Generate launch-config-forkless-data.json87 - name: Generate launch-config-forkless-data.json89 uses: cuchi/jinja2-action@v1.2.088 uses: cuchi/jinja2-action@v1.2.09910098101 - name: Build the stack99 - name: Build the stack102 run: docker-compose -f ".docker/docker-compose-forkless.yml" -f ".docker/docker-compose.${{ matrix.network }}.yml" up -d --build --force-recreate --timeout 300100 run: docker-compose -f ".docker/docker-compose-forkless-data.${{ matrix.network }}.yml" up -d --build --force-recreate --timeout 300103101104 - name: Check if docker logs consist logs related to Runtime Upgrade testing.102 - name: Check if docker logs consist logs related to Runtime Upgrade testing.105 if: success()103 if: success()161159162 - name: Stop running containers160 - name: Stop running containers163 if: always() # run this step always161 if: always() # run this step always164 run: docker-compose -f ".docker/docker-compose-forkless.yml" -f ".docker/docker-compose.${{ matrix.network }}.yml" down --volumes162 run: docker-compose -f ".docker/docker-compose-forkless-data.${{ matrix.network }}.yml" down --volumes165 163 166 - name: Remove builder cache164 - name: Remove builder cache167 if: always() # run this step always165 if: always() # run this step always