summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/cmake-platform-debug.yml5
-rw-r--r--.github/workflows/cmake-platform-release.yml7
2 files changed, 3 insertions, 9 deletions
diff --git a/.github/workflows/cmake-platform-debug.yml b/.github/workflows/cmake-platform-debug.yml
index 7706e3f..e5d6e37 100644
--- a/.github/workflows/cmake-platform-debug.yml
+++ b/.github/workflows/cmake-platform-debug.yml
@@ -17,12 +17,9 @@ jobs:
- 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}}
-
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}}
-