From d4bdd0af92437edc2b120f84842bbdf92d1bbef0 Mon Sep 17 00:00:00 2001 From: ihedvall Date: Wed, 24 Jan 2024 14:48:35 +0100 Subject: [PATCH] Removed python build --- .github/workflows/build.yml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 987828c..4217d3e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -61,16 +61,12 @@ jobs: env: ${{ matrix.env.cmake_env }} run: > cmake -B ${{github.workspace}}/build - -D CMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -D DBC_PYTHON=ON + -D CMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} - name: CMAKE Build run: > cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} - - name: CTEST Unit Test - working-directory: ${{github.workspace}}/build - run: ctest -C ${{env.BUILD_TYPE}} - # install for testing # - name: Install # run: >