ci: switch back to printing output to stderr
This commit is contained in:
parent
6893c30c60
commit
ac6b7a8b7b
12
bin/ci
12
bin/ci
@ -64,8 +64,8 @@ if [ "${1}" = "update" ]; then
|
|||||||
maybe_new_hash="$(git rev-parse HEAD)"
|
maybe_new_hash="$(git rev-parse HEAD)"
|
||||||
|
|
||||||
if [ "${current_hash}" != "${maybe_new_hash}" ]; then
|
if [ "${current_hash}" != "${maybe_new_hash}" ]; then
|
||||||
if ! nix flake check --print-build-logs 2>/tmp/ci-flake-check-${inp}; then
|
if ! nix flake check --print-build-logs; then
|
||||||
handle_update_check_fail "$inp" /tmp/ci-flake-check-${inp}
|
handle_update_check_fail "$inp"
|
||||||
continue
|
continue
|
||||||
fi
|
fi
|
||||||
else
|
else
|
||||||
@ -83,8 +83,8 @@ if [ "${1}" = "update" ]; then
|
|||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
if ! nix flake check --print-build-logs 2>/tmp/ci-flake-check; then
|
if ! nix flake check --print-build-logs; then
|
||||||
handle_update_check_fail "$ci_branch" /tmp/ci-flake-check
|
handle_update_check_fail "$ci_branch"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
@ -106,8 +106,8 @@ if [ "${1}" = "update" ]; then
|
|||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
else
|
else
|
||||||
if ! nix flake check --print-build-logs 2>/tmp/ci-flake-check; then
|
if ! nix flake check --print-build-logs; then
|
||||||
handle_check_fail /tmp/ci-flake-check
|
handle_check_fail
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
Loading…
Reference in New Issue
Block a user