Merge pull request #47 from nix-community/travis
ci: make travis output less verbose
This commit is contained in:
commit
c0af3f63f5
2 changed files with 3 additions and 3 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue