From d4c7f7e884756768a1da72968b0140f854e4603a Mon Sep 17 00:00:00 2001 From: mmd-osm Date: Mon, 9 Sep 2024 23:37:13 +0200 Subject: [PATCH] macOS: execute test cases --- .github/workflows/macos_14.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/macos_14.yml b/.github/workflows/macos_14.yml index 87f82c78..d60cc0ec 100644 --- a/.github/workflows/macos_14.yml +++ b/.github/workflows/macos_14.yml @@ -12,14 +12,15 @@ jobs: - name: Install dependencies run: | - brew install boost cryptopp fmt fcgi yajl libmemcached libpqxx postgresql + brew install boost cryptopp fmt fcgi yajl libmemcached libpqxx postgresql postgresql-common - name: build run: | mkdir build && cd build && \ CXXFLAGS="-Wall -Wextra -Wpedantic -Wno-unused-parameter" cmake .. -DBUILD_SHARED_LIBS=OFF -DBUILD_TESTING=ON -DCMAKE_BUILD_TYPE=Release && \ - make -j${nproc} + make -j${nproc} && \ + ctest - name: Running openstreetmap-cgimap run: | - ./build/openstreetmap-cgimap --help" + ./build/openstreetmap-cgimap --help