# HG changeset patch # User Matt Johnston # Date 1634571909 -28800 # Node ID 9d8af2da9b6094febd8e30d5555d1f2507ec254b # Parent 39a27a02f1aeb2d51d34e01ff919e0d5f79737b7 github action workaround macos ranlib diff -r 39a27a02f1ae -r 9d8af2da9b60 .github/workflows/build.yml --- a/.github/workflows/build.yml Mon Oct 18 23:36:23 2021 +0800 +++ b/.github/workflows/build.yml Mon Oct 18 23:45:09 2021 +0800 @@ -36,14 +36,17 @@ wextraflags: -Wno-deprecated-declarations -Werror skipcheck: True exoticos: True + # fails with: + # .../ranlib: file: libtomcrypt.a(cbc_setiv.o) has no symbols + ranlib: ranlib -no_warning_for_no_symbols - name: macos 11 os: macos-11 cc: clang - # OS X says daemon() and utmp are deprecated wextraflags: -Wno-deprecated-declarations -Werror skipcheck: True exoticos: True + ranlib: ranlib -no_warning_for_no_symbols # # Fuzzers run standalone. A bit superfluous with cifuzz, but # # good to run the whole corpus to keep it working. @@ -72,6 +75,7 @@ CONFIGURE_FLAGS: ${{ matrix.configure_flags }} # for fuzzing CXX: clang++ + RANLIB: ${{ matrix.ranlib || 'ranlib' }} steps: - name: deps