Skip to content

Commit 1077b00

Browse files
authored
Fix build pipeline (#73)
1 parent 2baf376 commit 1077b00

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -155,6 +155,7 @@ jobs:
155155
ln -s ../scripts/*.sh .
156156
cmake -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} -DENABLE_TESTING=OFF -DSTATICCOMPILE=${{ matrix.staticcompile }} ..
157157
cmake --build . --config ${{matrix.build_type}} -v
158+
sudo make install
158159
cd ../..
159160
160161
- name: Checkout cereal
@@ -194,16 +195,16 @@ jobs:
194195
195196
- name: Checkout ensmallen
196197
run: |
197-
wget https://ensmallen.org/files/ensmallen-2.22.2.tar.gz
198+
wget https://github.com/mlpack/ensmallen/archive/refs/tags/2.22.2.tar.gz
198199
- name: Build ensmallen
199200
run: |
200-
tar xvf ensmallen-2.22.2.tar.gz
201+
tar xvf 2.22.2.tar.gz
201202
cd ensmallen-2.22.2
202203
mkdir build
203204
cd build
204205
cmake -DCMAKE_POLICY_VERSION_MINIMUM=3.5 ..
205206
cmake --build . --config ${{matrix.build_type}} -v
206-
sudo make install
207+
sudo cmake --install . --config ${{matrix.build_type}} -v
207208
cd ../..
208209
209210
- name: Checkout mlpack

0 commit comments

Comments
 (0)