Merge pull request #47 from nix-community/travis

ci: make travis output less verbose
This commit is contained in:
Jörg Thalheim 2018-07-21 15:21:09 +01:00 committed by GitHub
commit c0af3f63f5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View file

@ -1,6 +1,6 @@
#!/usr/bin/env bash
set -eux -o pipefail # Exit with nonzero exit code if anything fails
set -eu -o pipefail # Exit with nonzero exit code if anything fails
if [[ "$TRAVIS_EVENT_TYPE" == "cron" ]] || [[ "$TRAVIS_EVENT_TYPE" == "api" ]]; then
openssl aes-256-cbc -K $encrypted_025d6e877aa4_key -iv $encrypted_025d6e877aa4_iv -in ci/deploy_key.enc -out deploy_key -d

View file

@ -241,7 +241,7 @@ import {EVALREPO_PATH} {{
"-I", str(EVALREPO_PATH),
] # yapf: disable
print(f"$ {' '.join(cmd)}")
logger.info(f"Evaluate repository {spec.name}")
proc = subprocess.Popen(
cmd, env=dict(PATH=os.environ["PATH"]), stdout=subprocess.PIPE)
res = proc.wait()
@ -304,7 +304,7 @@ def main() -> None:
if locked_repo is None:
# likely a repository added in a pull request, make it fatal then
raise
logger.exception(f"Failed to updated repo: {spec.name}")
logger.exception(f"Failed to updated repository {spec.name}")
repos.append(locked_repo)
update_lock_file(repos)