2013-02-17 16 views

回答

3

我使用before_install的YAML內解決。這讓我可以指定任何我想運行的命令,所以我基本上這樣做了:

language: perl 
perl: 
    - "5.16" 
    - "5.14" 
    - "5.12" 
    - "5.10" 


before_install: 
    - sudo apt-get update -qq 
    - sudo apt-get install -qq libjson-xs-perl devscripts git-core debhelper 
    - git config --global user.email "[email protected]" 
    - git config --global user.name "Mr Test"