diff options
Diffstat (limited to '.github/workflows/cmake-platform-release.yml')
| -rw-r--r-- | .github/workflows/cmake-platform-release.yml | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/.github/workflows/cmake-platform-release.yml b/.github/workflows/cmake-platform-release.yml index e640ed0..388cf9d 100644 --- a/.github/workflows/cmake-platform-release.yml +++ b/.github/workflows/cmake-platform-release.yml @@ -15,14 +15,11 @@ jobs: steps: - uses: actions/checkout@v4 - + - name: Configure CMake - run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} + run: cmake -B ${{github.workspace}}/build -DOCL_NO_INSTALL=1 -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} - name: Build run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} - - name: Install - run: sudo cmake --install ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} - |
