We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 313284e commit b11b82fCopy full SHA for b11b82f
.github/workflows/emscripten.yml
@@ -531,15 +531,12 @@ jobs:
531
fi
532
533
emmake make -j ${{ env.ncpus }} check-cppinterop
534
- max_size=$((50 * 1024 * 1024))
535
os="${{ matrix.os }}"
536
if [[ "${os}" != macos* ]] ; then
+ max_size=$((46 * 1024 * 1024))
537
actual_size=$(stat -c%s "./lib/libclangCppInterOp.so")
538
- echo $actual_size
539
- du -lh ./lib/libclangCppInterOp.so
540
- dir -lh ./lib/libclangCppInterOp.so
541
if [[ "$actual_size" -gt "$max_size" ]]; then
542
- echo "Error: libclangCppInterOp.so is larger than 50 MB."
+ echo "Error: libclangCppInterOp.so is larger than 46 MB."
543
exit 1
544
545
0 commit comments