diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 883ca01fa..d65c7c198 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -107,13 +107,13 @@ jobs: --instance-ids i-0d50212756bccc552 \ --document-name "AWS-RunShellScript" \ --parameters '{"commands":[ - "sudo yum update -y", - "sudo yum install -y git gcc openssl-devel bzip2-devel libffi-devel make", - "sudo yum groupinstall -y \"Development Tools\"", + "sudo apt-get update -y", + "sudo apt-get install -y git gcc openssl libbz2-dev libffi make", + "sudo apt-get groupinstall -y \"Development Tools\"", "curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y", "source $HOME/.cargo/env", "rustup update", - "sudo yum install -y clang cmake" + "sudo apt-get install -y clang cmake" ]}' \ --output text \ --query "Command.CommandId") @@ -121,7 +121,7 @@ jobs: - name: Check install prerequisites command status and retrieve output run: | - sleep 200 + sleep 20 STATUS=$(aws ssm list-command-invocations \ --command-id ${{ steps.install_prereq.outputs.command_id }} \ --details \ @@ -157,7 +157,7 @@ jobs: - name: Check install devnet command status and retrieve output run: | - sleep 200 + sleep 20 STATUS=$(aws ssm list-command-invocations \ --command-id ${{ steps.install_devnet.outputs.command_id }} \ --details \ @@ -198,7 +198,7 @@ jobs: - name: Check configure devnet command status and retrieve output run: | - sleep 200 + sleep 20 STATUS=$(aws ssm list-command-invocations \ --command-id ${{ steps.configure_devnet.outputs.command_id }} \ --details \