Skip to content

Commit ebb6b2b

Browse files
committed
update workflow
1 parent 77c4f66 commit ebb6b2b

1 file changed

Lines changed: 10 additions & 2 deletions

File tree

.github/workflows/c-cpp.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,11 +113,19 @@ jobs:
113113
uses: actions/checkout@v4
114114
- name: Install submodules
115115
run: git submodule update --init --recursive
116-
- name: Install Eigen3
117-
uses: kupns-aka-kupa/setup-eigen3@v1
118116
- name: Build external
119117
run: |
120118
bash
119+
mkdir eigen
120+
cd eigen
121+
curl -L -O https://gitlab.com/libeigen/eigen/-/archive/3.4.0/eigen-3.4.0.zip
122+
unzip eigen-3.4.0.zip
123+
cd eigen-3.4.0
124+
mkdir build
125+
cd build
126+
cmake ..
127+
make install
128+
cd ../../../
121129
cd src/maxmsp
122130
mkdir -p ./1dSAV/build
123131
cd ./1dSAV/build

0 commit comments

Comments
 (0)