2017-10-18 122 views
0

我想在travis CI中構建以下圖像。但是,我獲得401授權。它昨天正在工作,但今天正在工作。sudo apt-get update -qq在travis 401中失敗未授權

language: c 
sudo: required 

before_install: 

    - curl -OL http://raw.github.com/craigcitro/r-travis/master/scripts/travis-tool.sh 
    - chmod 755 ./travis-tool.sh 
    - ./travis-tool.sh bootstrap 
install: 
    - ./travis-tool.sh install_deps 
script: ./travis-tool.sh run_tests 

after_failure: 
    - ./travis-tool.sh dump_logs 

notifications: 
    email: 
    on_success: change 
    on_failure: change 

回答