Skip to content

Commit

Permalink
Exclude curve25519_64_msvc.c
Browse files Browse the repository at this point in the history
Quick fix for mit-plv#1592
  • Loading branch information
JasonGross committed Apr 19, 2023
1 parent 457cb5e commit 5f4263b
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 5f4263b

Please sign in to comment.