diff --git a/.github/workflows/cpp-tests.yml b/.github/workflows/cpp-tests.yml index 3b2a0bb..6e6304b 100644 --- a/.github/workflows/cpp-tests.yml +++ b/.github/workflows/cpp-tests.yml @@ -62,40 +62,4 @@ jobs: - name: Run tests shell: bash -el {0} working-directory: build - run: ctest --output-on-failure - - macos-tests: - name: ${{ matrix.build_type }} with AppleClang - runs-on: macos-15 - strategy: - fail-fast: false - matrix: - build_type: [Debug, Release] - - steps: - - uses: actions/checkout@v7 - - - name: Install dependencies - run: brew install cmake ninja protobuf - - - name: Configure - run: | - cmake -S "${GITHUB_WORKSPACE}" \ - -B "${GITHUB_WORKSPACE}/build" \ - -G Ninja \ - -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} \ - -DCALF_TESTS=ON \ - -DCALF_PYTHON_TESTS=OFF \ - -DCALF_PROTOBUF_FETCH=OFF - - - name: Verify Protobuf - shell: bash - run: test ! -d "${GITHUB_WORKSPACE}/build/_deps/protobuf-src" - - - name: Build - run: cmake --build "${GITHUB_WORKSPACE}/build" --parallel - - - name: Run tests - shell: bash -el {0} - working-directory: build - run: ctest --output-on-failure + run: ctest --output-on-failure \ No newline at end of file diff --git a/CMakeLists.txt b/CMakeLists.txt index 3421bb0..17c17a0 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.16) -project(CALF VERSION 0.3.0 LANGUAGES CXX) +project(CALF VERSION 0.3.1 LANGUAGES CXX) # ------------------------------------------------------------------------- # Options & Defaults