From f3145976c2e9a8c2df77818ff3bf1f2dda2f9b35 Mon Sep 17 00:00:00 2001 From: Konstantin Astakhov Date: Mon, 31 Oct 2022 11:46:04 +0000 Subject: [PATCH] merge docker-compose files --- --- a/.github/workflows/forkless-update-nodata.yml +++ b/.github/workflows/forkless-update-nodata.yml @@ -101,7 +101,7 @@ node-version: 16 - name: Build the stack - run: docker-compose -f ".docker/docker-compose-forkless.yml" -f ".docker/docker-compose.${{ matrix.network }}.yml" up -d --build --force-recreate --timeout 300 + run: docker-compose -f ".docker/docker-compose.${{ matrix.network }}.yml" up -d --build --force-recreate --timeout 300 - name: Check if docker logs consist logs related to Runtime Upgrade testing. if: success() @@ -208,7 +208,7 @@ - name: Stop running containers if: always() # run this step always - run: docker-compose -f ".docker/docker-compose-forkless.yml" -f ".docker/docker-compose.${{ matrix.network }}.yml" down + run: docker-compose -f ".docker/docker-compose.${{ matrix.network }}.yml" down - name: Remove builder cache if: always() # run this step always --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -44,8 +44,6 @@ # The type of runner that the job will run on runs-on: [self-hosted-ci,large] - - timeout-minutes: 1380 name: ${{ matrix.network }} - parallel @@ -104,7 +102,7 @@ node-version: 16 - name: Build the stack - 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 300 + run: docker-compose -f ".docker/docker-compose.node.${{ matrix.network }}.yml" up -d --build --remove-orphans --force-recreate --timeout 300 # 🚀 POLKADOT LAUNCH COMPLETE 🚀 - name: Check if docker logs consist messages related to testing of Node Parachain Upgrade. @@ -176,7 +174,7 @@ - name: Stop running containers if: always() # run this step always - run: docker-compose -f ".docker/docker-compose-forkless.yml" -f ".docker/docker-compose.node.${{ matrix.network }}.yml" down --volumes + run: docker-compose -f ".docker/docker-compose.node.${{ matrix.network }}.yml" down --volumes - name: Remove builder cache if: always() # run this step always @@ -252,7 +250,7 @@ node-version: 16 - name: Build the stack - 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 300 + run: docker-compose -f ".docker/docker-compose.node.${{ matrix.network }}.yml" up -d --build --remove-orphans --force-recreate --timeout 300 # 🚀 POLKADOT LAUNCH COMPLETE 🚀 - name: Check if docker logs consist messages related to testing of Node Parachain Upgrade. @@ -323,7 +321,7 @@ - name: Stop running containers if: always() # run this step always - run: docker-compose -f ".docker/docker-compose-forkless.yml" -f ".docker/docker-compose.node.${{ matrix.network }}.yml" down --volumes + run: docker-compose -f ".docker/docker-compose.node.${{ matrix.network }}.yml" down --volumes - name: Remove builder cache if: always() # run this step always --- a/.github/workflows/node-only-update.yml +++ b/.github/workflows/node-only-update.yml @@ -106,7 +106,7 @@ node-version: 16 - name: Build the stack - 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 300 + run: docker-compose -f ".docker/docker-compose.node.${{ matrix.network }}.yml" up -d --build --remove-orphans --force-recreate --timeout 300 # 🚀 POLKADOT LAUNCH COMPLETE 🚀 - name: Check if docker logs consist messages related to testing of Node Parachain Upgrade. @@ -355,7 +355,7 @@ - name: Stop running containers if: always() # run this step always - run: docker-compose -f ".docker/docker-compose-forkless.yml" -f ".docker/docker-compose.node.${{ matrix.network }}.yml" down --volumes + run: docker-compose -f ".docker/docker-compose.node.${{ matrix.network }}.yml" down --volumes - name: Remove builder cache if: always() # run this step always -- gitstuff