Travis CI是否导出包含GitHub用户名的环境变量?

时间:2015-05-01 07:49:46

标签: github travis-ci

我想在我的def find_any(what, where): for that in what: if that in where: return True return False file = ['Tool','Cool','Pool'] word = 'Cool' guesses = ['T','P'] for i in range(len(file)): if len(file[i]) == len(word) and find_any(guesses, file[i]): continue # This will skip to the next file # Do things with file[i] here 文件中获取GitHub用户/组织名称。也就是说,如果我的.travis.yml存储库位于https://github.com/sschuberth/karn,我希望在构建时获得.travis.yml。从docs看,似乎还没有这样的变量,或者我错过了什么?

我知道我可以从Git的远程URL中提取这些信息,但我希望能有更清洁的东西。

1 个答案:

答案 0 :(得分:3)

docs you linked above中,TRAVIS_REPO_SLUG将是您的github用户名/ repo,例如sschuberth/karn,应该很容易从中选择用户名。