Skip to content

Commit

Permalink
Add -L to Nix builds (print build logs)
Browse files Browse the repository at this point in the history
  • Loading branch information
x-mass committed Apr 26, 2024
1 parent 87ec9f8 commit 14b2aac
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/crypto3-testing-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
for check_name in "${check_names[@]}"; do
# This completes immediately since results are in cache
nix build .?submodules=1#checks.x86_64-linux.$check_name
nix build -L .?submodules=1#checks.x86_64-linux.$check_name
cp -r ./result/* "$results_dir/$check_name"
rm result
done
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/crypto3-testing-mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
for check_name in "${check_names[@]}"; do
# This completes immediately since results are in cache
nix build .?submodules=1#checks.x86_64-linux.$check_name
nix build -L .?submodules=1#checks.x86_64-linux.$check_name
cp -r ./result/* "$results_dir/$check_name"
rm result
done
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reusable-submodule-testing-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ jobs:
fi
echo "Running check for $check_name ${extra_args:+with $extra_args}"
nix build .?submodules=1#checks.x86_64-linux.$check_name $extra_args
nix build -L .?submodules=1#checks.x86_64-linux.$check_name $extra_args
cp -r ./result/* "$results_dir/$check_name"
rm -rf result
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reusable-submodule-testing-mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ jobs:
fi
echo "Running check for $check_name ${extra_args:+with $extra_args}"
nix build .?submodules=1#checks.x86_64-darwin.$check_name $extra_args
nix build -L .?submodules=1#checks.x86_64-darwin.$check_name $extra_args
cp -r ./result/* "$results_dir/$check_name"
rm -rf result
Expand Down

0 comments on commit 14b2aac

Please sign in to comment.