这是我到gh-pages分支的部署阶段
deploy:
provider: pages
skip_clean: true
github_token: ${GITHUB_TOKEN}
local_dir: build
on:
branch: master
输出日志中的这一行;声明此命令正在运行,我尚未在travis配置中声明:
$ ruby -S gem install dpl
后跟一系列警告,指出日志无法处理并达到最大输出大小4MB
warning: LF will be replaced by CRLF in build/asset-manifest.json.
The file will have its original line endings in your working directory
由于作业超出了最大日志长度,因此构建出错了。
The job exceeded the maximum log length, and has been terminated.
是否有一些方法可以使这些警告消失,从而使构建成功?任何帮助将不胜感激。