Skip to content

Commit

Permalink
Test the latest changes
Browse files Browse the repository at this point in the history
  • Loading branch information
sshrihar committed Aug 20, 2024
1 parent c82601d commit b403e59
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,21 +107,21 @@ 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")
echo "command_id=$COMMAND_ID" >> $GITHUB_OUTPUT
- 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 \
Expand Down Expand Up @@ -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 \
Expand Down Expand Up @@ -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 \
Expand Down

0 comments on commit b403e59

Please sign in to comment.