我正在为一个 gradle 项目设置 GitLab CI。下载 gradle 后,unzip 命令报告即使下载成功,也没有找到 zip 文件。我添加了一个 ls 只是为了查看目录的内容,而我的 zip 文件不存在。下面是我的 .gitlab-ci.yml 文件image: docker:lateststages: - build before_script: - cd /usr/lib - curl https://services.gradle.org/distributions/gradle-2.10-bin.zip -o gradle-2.10-bin.zip - unzip "gradle-2.10-bin.zip" - ln -s "/usr/gradle-2.10/bin/gradle" /usr/bin/gradle - rm "gradle-2.10-bin.zip" - export GRADLE_HOME=usr/lib/gradle-2.10 - export PATH=$PATH:$GRADLE_HOME/binbuild_job: image: java:8 stage: build script: - gradle -v这是作业的错误输出$ unzip "gradle-2.10-bin.zip" unzip: 找不到或打开 gradle-2.10-bin.zip、gradle-2.10-bin.zip.zip 或 gradle-2.10-bin.zip.ZIP。错误:作业失败:退出代码 1
1 回答
ABOUTYOU
TA贡献1812条经验 获得超5个赞
这不是该命令的完整错误输出,这是:
$ unzip "gradle-2.10-bin.zip"
Archive: gradle-2.10-bin.zip
End-of-central-directory signature not found. Either this file is not
a zipfile, or it constitutes one disk of a multi-part archive. In the
latter case the central directory and zipfile comment will be found on
the last disk(s) of this archive.
unzip: cannot find zipfile directory in one of gradle-2.10-bin.zip or
gradle-2.10-bin.zip.zip, and cannot find gradle-2.10-bin.zip.ZIP, period.
如果我们检查它,该文件是空的。如果我们curl -I在该 url 上执行操作,我们会得到 301,因此您需要添加-L到该 curl 命令以遵循重定向:
curl -L https://services.gradle.org/distributions/gradle-2.10-bin.zip
添加回答
举报
0/150
提交
取消