Skip to content

Commit 07cc7e2

Browse files
committed
Build fix
1 parent 30e2b0b commit 07cc7e2

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ jobs:
111111
mkdir build
112112
cd build
113113
cmake -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} -DENABLE_TESTING=OFF -DSTATICCOMPILE=${{ matrix.staticcompile }} ..
114-
cd ../../
114+
cd ../..
115115
116116
- name: Checkout CMS
117117
uses: actions/checkout@v4
@@ -157,6 +157,7 @@ jobs:
157157
cmake -DJUST_INSTALL_CEREAL=ON ..
158158
make -j6
159159
sudo make install
160+
cd ..
160161
161162
- name: Checkout armadillo
162163
run: |
@@ -168,6 +169,7 @@ jobs:
168169
./configure
169170
make -j6
170171
sudo make install
172+
cd ..
171173
172174
- name: Checkout ensmallen
173175
run: |
@@ -181,6 +183,7 @@ jobs:
181183
cmake ..
182184
cmake --build . --config ${{matrix.build_type}}
183185
sudo make install
186+
cd ../..
184187
185188
- name: Checkout mlpack
186189
uses: actions/checkout@v4
@@ -196,8 +199,8 @@ jobs:
196199
cmake -DBUILD_SHARED_LIBS=ON -DBUILD_CLI_EXECUTABLES=OFF ..
197200
cmake --build . --config ${{matrix.build_type}}
198201
sudo make install
202+
cd ../..
199203
200-
201204
- uses: actions/checkout@v4
202205
with:
203206
path: project

0 commit comments

Comments
 (0)