随着 Snap-CI 的消失,我一直在尝试让我们的构建在 AWS CodeBuild 上运行。我已经构建了 buildspec.yml,但更改目录似乎不起作用。
version: 0.1
phases:
install:
commands:
- apt-get update -y
- apt-get install -y node
- apt-get install -y npm
build:
commands:
- cd MyDir //Expect to be in MyDir now
- echo `pwd` //Shows /tmp/blablabla/ instead of /tmp/blablabla/MyDir
- npm install //Fails because I'm not in the right directory
- bower install
- npm run ci
post_build:
commands:
- echo Build completed on `date`
artifacts:
files:
- MyDir/MyFile.war
discard-paths: yes
看起来这应该相当简单,但到目前为止我还没有任何运气让它工作。