diff --git a/.github/workflows/ci-mysql.yml b/.github/workflows/ci-mysql.yml index bbb4c981..25159422 100644 --- a/.github/workflows/ci-mysql.yml +++ b/.github/workflows/ci-mysql.yml @@ -27,14 +27,20 @@ jobs: - name: Verify MySQL run: mysql -uroot -e'show databases;' + - name: Test + if : startsWith(matrix.os, 'macos') + run : | + mdfind -name "mysql.h" + mdfind -name "mysqlclient*" + - name: Configure cmake - run: cmake -B${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{ matrix.configuration }} -DENABLE_MYSQL=ON + run: cmake -B${{ github.workspace }}/build -DCMAKE_BUILD_TYPE=${{ matrix.configuration }} -DENABLE_MYSQL=ON - name: Build - run: cmake --build ${{github.workspace}}/build --config ${{ matrix.configuration }} + run: cmake --build ${{ github.workspace }}/build --config ${{ matrix.configuration }} - name: Test - working-directory: ${{github.workspace}}/build + working-directory: ${{ github.workspace }}/build env: CTEST_OUTPUT_ON_FAILURE: 1 - run: ctest -C ${{ matrix.configuration }} -j `nproc` -V \ No newline at end of file + run: ctest -C ${{ matrix.configuration }} -j `nproc` -V