我想通过公共网址将数据下载到travis环境中:
before_install:
- curl -OL http://publicwebsite.org/data/subdirectory2
我的问题是我不知道数据是否已成功下载。
我的问题是,我现在如何找到这些数据?我假设它会在/home/travis/build/subdirectory2
找到,但这不是真的。
pwd
和ls
之类的命令不会显示构建中下载的文件或我所在的位置。
答案 0 :(得分:1)
$PWD
时, $TRAVIS_BUILD_DIR
为before_install
。 https://docs.travis-ci.com/user/environment-variables#Default-Environment-Variables
如果您不确定它在哪里,可以将-o /path/to/file
传递给curl
。