【发布时间】:2017-05-23 13:00:50
【问题描述】:
我在 aws 服务器上使用 codestart,我的 codecommit 和 codebuild 成功,但未部署在 tomcat 服务器上。这些是 buildspec.yml 和 appspec.yml
buildspec.yml
version: 0.1
phases:
install:
commands:
- echo Entering install phase...
- wget http://mirror.olnevhost.net/pub/apache/maven/maven-3/3.3.9/binaries/apache-maven-3.3.9-bin.tar.gz
- tar xzvf apache-maven-3.3.9-bin.tar.gz -C /opt/
- export PATH=/opt/apache-maven-3.3.9/bin:$PATH
pre_build:
commands:
- echo Entering pre_build phase...
- echo Nothing to do in the pre_build phase...
build:
commands:
- echo Entering build phase...
- echo Build started on `date`
- mvn -f pom.xml compile war:exploded
post_build:
commands:
- echo Entering post_build phase...
- echo Build completed on `date`
- mv target/ROOT .
artifacts:
type: zip
files:
- target/ROOT.war
- appspec.yml
discard-paths: yes
appspec.yml
version: 0.0
os: linux
files:
- source: ./ROOT.jar
destination: /
【问题讨论】:
-
随便看看,你的
appspec.yml中的./ROOT.jar应该是./target/ROOT.war吗?
标签: spring amazon-web-services tomcat8 aws-code-deploy aws-codebuild