File tree Expand file tree Collapse file tree 1 file changed +14
-10
lines changed
Expand file tree Collapse file tree 1 file changed +14
-10
lines changed Original file line number Diff line number Diff line change @@ -136,18 +136,22 @@ jobs:
136136 cmake --build . --config ${{matrix.build_type}} -v
137137 cd ../..
138138
139- - name : Checkout BRiAl
140- uses : actions/checkout@v4
141- with :
142- repository : BRiAl/BRiAl
143- ref : master
144- path : BRiAl
145- submodules : ' true'
139+ - name : Install m4ri
140+ run : |
141+ wget https://github.com/malb/m4ri/releases/download/20250128/m4ri-20250128.tar.gz
142+ tar xzvf m4ri-20250128.tar.gz
143+ cd m4ri-20250128
144+ ./configure --enable-static --enable-shared
145+ make -j8
146+ sudo make install
147+ cd ..
146148
147- - name : Build BRiAl
149+ - name : Install BRiAl
148150 run : |
149- cd BRiAl
150- ./bootstrap.sh
151+ wget https://github.com/BRiAl/BRiAl/releases/download/1.2.12/brial-1.2.12.tar.bz2
152+ tar xzvf brial-1.2.12.tar.bz2
153+ cd brial-1.2.12
154+ ./configure --enable-static --enable-shared
151155 make -j8
152156 sudo make install
153157 cd ..
You can’t perform that action at this time.
0 commit comments