Merge branch 'master' into aws

pull/37/head
Minh Doan 6 years ago
commit 488e35eb8e
  1. 2
      aws-experiment-launch/create_and_deploy.py
  2. 2
      aws-scripts/setup.sh

@ -241,7 +241,7 @@ def run_one_region_codedeploy(region_number, commitId):
codedeploy = session.client('codedeploy')
application_name = APPLICATION_NAME
deployment_group = APPLICATION_NAME + "-" + str(commitId)[6] + "-" + CURRENT_SESSION
deployment_group = APPLICATION_NAME + "-" + commitId[:6] + "-" + CURRENT_SESSION
repo = REPO
print("Setting up to deploy commitId %s on region %s"%(commitId,region_number))

@ -1,6 +1,6 @@
#!/bin/bash -x
echo "Setup Golang" >> tmplog
sudo yum update -y
#sudo yum update -y
sudo yum install -y golang
MyHOME=/home/ec2-user

Loading…
Cancel
Save