diff --git a/.github/workflows/deploy-gcp-tests.yml b/.github/workflows/deploy-gcp-tests.yml index b51e6d08b..65cd9c93b 100644 --- a/.github/workflows/deploy-gcp-tests.yml +++ b/.github/workflows/deploy-gcp-tests.yml @@ -432,6 +432,8 @@ jobs: --ssh-flag="-o ConnectTimeout=5" \ --command \ "\ + # Wait for the disk to be attached + while [[ ! -e /dev/sdb ]]; do sleep 1; done && \ sudo docker run \ --name ${{ inputs.test_id }} \ --tty \ @@ -480,6 +482,8 @@ jobs: --ssh-flag="-o ConnectTimeout=5" \ --command \ "\ + # Wait for the disk to be attached + while [[ ! -e /dev/sdb ]]; do sleep 1; done && \ sudo docker run \ --name ${{ inputs.test_id }} \ --tty \