appspec.yml failed to call scripts
问题 I am trying to setup CI using AWS CodeDeploy and CircleCI. Right now I am stuck at the step where AWS CodeDeploy should copy stuff into EC2 and run scripts. But somehow CircleCI tells me something is wrong. Does anyone know what might be happening? Thanks. the appspec.yml is: version: 0.0 os: linux files: - source: / destination: /home/ubuntu hooks: BeforeInstall: - location: scripts/setup.sh timeout: 3800 runas: root ApplicationStart: - location: scripts/start.sh timeout: 3800 runas: root