Skip to content

Commit 27beae0

Browse files
committed
fix cmake build command
1 parent a7d97f5 commit 27beae0

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/cmake_install.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,6 +162,7 @@ jobs:
162162
- name: Install Dependencies
163163
run: |
164164
cmake -S ./install/cmake -B ~/thirdparty-build -DCMAKE_CXX_STANDARD=$CXX_STANDARD -DCMAKE_INSTALL_PREFIX=$INSTALL_TEST_DIR
165+
cd ~/thirdparty-build
165166
sudo -E make -j$(nproc)
166167
- name: Run Tests (static libs)
167168
env:
@@ -193,7 +194,8 @@ jobs:
193194
sudo -E ./ci/setup_cmake.sh
194195
- name: Install Dependencies
195196
run: |
196-
cmake -S ./install/cmake -B ~/thirdparty-build -DCMAKE_CXX_STANDARD=$CXX_STANDARD -DCMAKE_INSTALL_PREFIX=$INSTALL_TEST_DIR
197+
cmake -S ./install/cmake -B ~/thirdparty-build -DCMAKE_CXX_STANDARD=$CXX_STANDARD -DCMAKE_INSTALL_PREFIX=$INSTALL_TEST_DIR
198+
cd ~/thirdparty-build
197199
sudo -E make -j$(nproc)
198200
- name: Run Tests (static libs)
199201
env:

0 commit comments

Comments
 (0)