Skip to content

Commit

Permalink
Exclude curve25519_64_msvc.c (#1593)
Browse files Browse the repository at this point in the history
Quick fix for #1592
  • Loading branch information
JasonGross authored Apr 20, 2023
1 parent 457cb5e commit fcc467e
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion etc/ci/test-fiat-c-boringssl.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,11 @@ pushd boringssl >/dev/null
echo "::group::Patching BoringSSL"
({
set -ex
( cd third_party/fiat && for i in *.h; do cp "${SUBCOMPONENT_PATH}/${i/.h/.c}" "$i" || exit $?; done ) || exit $?
( cd third_party/fiat && for i in *.h; do
if [ "$i" != "curve25519_64_msvc.h" ] && [ "$i" != "p256_64_msvc.h" ]; then
cp "${SUBCOMPONENT_PATH}/${i/.h/.c}" "$i" || exit $?;
fi;
done ) || exit $?
( cd third_party/fiat && git --no-pager diff )
}) || exit $?
echo "::endgroup::"
Expand Down

0 comments on commit fcc467e

Please sign in to comment.