diff --git a/.github/workflows/build-all.yml b/.github/workflows/build-all.yml index 7f9b0a4..5332156 100644 --- a/.github/workflows/build-all.yml +++ b/.github/workflows/build-all.yml @@ -66,11 +66,13 @@ jobs: run: cmake --build build -j$(nproc) - name: Run chaindb equivalence test + # chaindb_equivalence_tests is a SEPARATE binary (test_chaindb_equivalence), + # not a suite inside test_triangles. Run the right binary. run: | - if [ -x build/bin/test_triangles ]; then - ./build/bin/test_triangles --run_test=chaindb_equivalence_tests --log_level=test_suite + if [ -x build/bin/test_chaindb_equivalence ]; then + ./build/bin/test_chaindb_equivalence --log_level=test_suite else - echo "test_triangles not built — skipping chaindb equivalence" + echo "test_chaindb_equivalence not built — skipping chaindb equivalence" exit 0 fi @@ -161,10 +163,7 @@ jobs: mingw-w64-x86_64-miniupnpc mingw-w64-x86_64-zlib mingw-w64-x86_64-rocksdb - mingw-w64-x86_64-autoconf - mingw-w64-x86_64-automake - mingw-w64-x86_64-autoconf2.13 - mingw-w64-x86_64-libtool + mingw-w64-x86_64-autotools - name: Set VERSION run: | @@ -321,10 +320,7 @@ jobs: mingw-w64-x86_64-miniupnpc mingw-w64-x86_64-zlib mingw-w64-x86_64-rocksdb - mingw-w64-x86_64-autoconf - mingw-w64-x86_64-automake - mingw-w64-x86_64-autoconf2.13 - mingw-w64-x86_64-libtool + mingw-w64-x86_64-autotools - name: Configure run: | @@ -606,7 +602,7 @@ jobs: # macOS Qt is built with @rpath embedded, so libtor needs to be # at the configured TOR_SOURCE_ROOT location. run: | - brew install libevent openssl@3 autoconf automake libtool + brew install libevent openssl@3 autoconf automake libtool zlib export PATH="/opt/homebrew/opt/automake/bin:/opt/homebrew/opt/libtool/bin:$PATH" LIBEVENT_DIR=/opt/homebrew/opt/libevent \ OPENSSL_DIR=/opt/homebrew/opt/openssl@3 \