Wait for an extra minute before launching GCP tests

This commit is contained in:
teor 2023-10-06 12:02:51 +10:00 committed by GitHub
parent fcc7bf4e33
commit f10d626152
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 2 deletions

View File

@ -180,7 +180,7 @@ jobs:
--labels=app=${{ inputs.app_name }},environment=test,network=${NETWORK},github_ref=${{ env.GITHUB_REF_SLUG_URL }},test=${{ inputs.test_id }} \
--tags ${{ inputs.app_name }} \
--zone ${{ vars.GCP_ZONE }}
sleep 60
sleep 120
# Create a docker volume with the new disk we just created.
#
@ -199,6 +199,7 @@ jobs:
sudo docker volume create --driver local --opt type=ext4 --opt device=/dev/sdb \
${{ inputs.test_id }}-${{ env.GITHUB_SHA_SHORT }} \
"
sleep 60
# Launch the test without any cached state
- name: Launch ${{ inputs.test_id }} test
@ -382,7 +383,7 @@ jobs:
--labels=app=${{ inputs.app_name }},environment=test,network=${NETWORK},github_ref=${{ env.GITHUB_REF_SLUG_URL }},test=${{ inputs.test_id }} \
--tags ${{ inputs.app_name }} \
--zone ${{ vars.GCP_ZONE }}
sleep 60
sleep 120
# Create a docker volume with the selected cached state.
#
@ -401,6 +402,7 @@ jobs:
sudo docker volume create --driver local --opt type=ext4 --opt device=/dev/sdb \
${{ inputs.test_id }}-${{ env.GITHUB_SHA_SHORT }} \
"
sleep 60
# Launch the test with the previously created Zebra-only cached state.
# Each test runs one of the "Launch test" steps, and skips the other.