Skip to content

Commit

Permalink
fix: get more information
Browse files Browse the repository at this point in the history
  • Loading branch information
gustavovalverde committed Oct 5, 2023
1 parent 6fe96d8 commit bd32761
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/sub-deploy-integration-tests-gcp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ jobs:
"\
set -ex; \
# Check if we need to format the disk if no state is needed
if [[ ${{ inputs.needs_zebra_state }} == false && ${{ inputs.needs_lwd_state }} == false ]]; then
if [[ "${{ inputs.needs_zebra_state }}" == "false" && "${{ inputs.needs_lwd_state }}" == "false" ]]; then
sudo mkfs.ext4 -v /dev/sdb
fi \
&& \
Expand Down Expand Up @@ -344,14 +344,15 @@ jobs:
--ssh-flag="-o ConnectTimeout=5" \
--command \
"\
set -ex; \
# Wait for the disk to be attached
while [[ ! -e /dev/sdb ]]; do sleep 1; done && \
sudo docker run \
--name ${{ inputs.test_id }} \
--tty \
--detach \
${{ inputs.test_variables }} \
$MOUNT_FLAGS \
${MOUNT_FLAGS} \
${{ vars.GAR_BASE }}/${{ vars.CI_IMAGE_NAME }}:sha-${{ env.GITHUB_SHA_SHORT }} \
"
Expand Down

0 comments on commit bd32761

Please sign in to comment.