Wait for an extra minute before launching GCP tests
This commit is contained in:
parent
fcc7bf4e33
commit
f10d626152
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue