File tree Expand file tree Collapse file tree 1 file changed +22
-1
lines changed
Expand file tree Collapse file tree 1 file changed +22
-1
lines changed Original file line number Diff line number Diff line change @@ -200,7 +200,28 @@ jobs:
200200 cmake --build . --config ${{matrix.build_type}}
201201 sudo make install
202202 cd ../..
203-
203+
204+ - name : Checkout arjun
205+ uses : actions/checkout@v4
206+ with :
207+ repository : meelgroup/arjun
208+ ref : synthesis2
209+ path : arjun
210+ - name : Build arjun
211+ run : |
212+ cd arjun
213+ mkdir build
214+ cd build
215+ cmake \
216+ -DCMAKE_CXX_COMPILER=${{ matrix.cpp_compiler }} \
217+ -DCMAKE_C_COMPILER=${{ matrix.c_compiler }} \
218+ -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} \
219+ -DSTATICCOMPILE=${{ matrix.staticcompile }} \
220+ -DENABLE_TESTING=OFF \
221+ -S ..
222+ cmake --build . --config ${{matrix.build_type}}
223+ cd ../..
224+
204225 - uses : actions/checkout@v4
205226 with :
206227 path : project
You can’t perform that action at this time.
0 commit comments