Skip to content

Commit 756e858

Browse files
authored
Update and rename newpython.yml to python-wheel-build.yml
1 parent bef1ac8 commit 756e858

File tree

1 file changed

+22
-1
lines changed

1 file changed

+22
-1
lines changed

.github/workflows/newpython.yml .github/workflows/python-wheel-build.yml

+22-1
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,34 @@ jobs:
1111
os: [ubuntu-20.04, windows-2022, macos-13]
1212

1313
steps:
14-
- uses: actions/checkout@v2
14+
- uses: actions/checkout@v3
15+
- name: Checkout CaDiCaL
16+
uses: actions/checkout@v3
17+
with:
18+
repository: meelgroup/cadical
19+
ref: 'add_dynamic_lib'
20+
path: python/cadical
21+
22+
- name: Checkout Cadiback
23+
uses: actions/checkout@v3
24+
with:
25+
repository: meelgroup/cadiback
26+
ref: 'mate'
27+
path: python/cadiback
28+
29+
- name: configure and build CaDiCaL
30+
run: cd python/cadical && CXXFLAGS=-fPIC ./configure --competition && make -j4
31+
32+
- name: Configure and build Cadiback
33+
run: cd python/cadiback && ./configure && make -j4
34+
1535
- name: Checkout CMS
1636
uses: actions/checkout@v2
1737
with:
1838
repository: msoos/cryptominisat
1939
ref: 'master'
2040
path: python/cryptominisat
41+
2142
- name: Checkout Arjun
2243
uses: actions/checkout@v2
2344
with:

0 commit comments

Comments
 (0)