Skip to content

Commit 7dd3a13

Browse files
committed
Fixing build
1 parent 05a73b8 commit 7dd3a13

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

.github/workflows/build.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ jobs:
6565
cd cadical
6666
CXXFLAGS=-fPIC ./configure --competition
6767
make -j8
68+
sudo cp build/libcadical.so /usr/lib/
6869
cd ..
6970
7071
- name: Checkout Cadiback
@@ -78,6 +79,7 @@ jobs:
7879
cd cadiback
7980
CXX=c++ ./configure
8081
make -j8
82+
sudo cp libcadiback.so /usr/lib/
8183
cd ..
8284
8385
- name: checkout
@@ -97,6 +99,15 @@ jobs:
9799
-S ..
98100
cmake --build . --config ${{matrix.build_type}} -v
99101
102+
- name: run it to check it executes
103+
run: |
104+
echo "Running some command : cryptominisat5 --version"
105+
./project/build/cryptominisat5 --version
106+
echo $?
107+
echo "Running some command: cryptominisat5 --help"
108+
./project/build/cryptominisat5 --help
109+
echo $?
110+
100111
- name: Test
101112
run: ctest -C ${{matrix.build_type}} --verbose
102113

0 commit comments

Comments
 (0)