Skip to content

Commit 6f86a2d

Browse files
committed
Build
1 parent 07cc7e2 commit 6f86a2d

File tree

1 file changed

+22
-1
lines changed

1 file changed

+22
-1
lines changed

.github/workflows/build.yml

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)