Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 22 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
name: build

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "*" ]

Expand Down Expand Up @@ -39,7 +41,7 @@ jobs:
- name: Install zlib for Mac dynamic
if: contains(matrix.os, 'macos') && matrix.staticcompile == 'OFF'
run: |
wget https://www.zlib.net/zlib-1.3.1.tar.gz
wget https://zlib.net/fossils/zlib-1.3.1.tar.gz
tar xzvf zlib-1.3.1.tar.gz
cd zlib-1.3.1
./configure
Expand All @@ -50,7 +52,7 @@ jobs:
- name: Install zlib for Mac static
if: contains(matrix.os, 'macos') && matrix.staticcompile == 'ON'
run: |
wget https://www.zlib.net/zlib-1.3.1.tar.gz
wget https://zlib.net/fossils/zlib-1.3.1.tar.gz
tar xzvf zlib-1.3.1.tar.gz
cd zlib-1.3.1
./configure --static
Expand Down Expand Up @@ -130,7 +132,7 @@ jobs:
uses: actions/checkout@v4
with:
repository: msoos/cryptominisat
ref: master
ref: working-on-synth
path: cryptominisat
submodules: 'true'
- name: Build CMS
Expand Down Expand Up @@ -222,11 +224,27 @@ jobs:
sudo make install
cd ../..

- name: Checkout treedecomp
uses: actions/checkout@v4
with:
repository: meelgroup/treedecomp
ref: main
path: treedecomp
- name: Build treedecomp
run: |
cd treedecomp
mkdir build
cd build
cmake -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} -DSTATICCOMPILE=${{ matrix.staticcompile }} ..
cmake --build . --config ${{matrix.build_type}} -v
sudo cmake --install . --config ${{matrix.build_type}} -v
cd ../..

- name: Checkout arjun
uses: actions/checkout@v4
with:
repository: meelgroup/arjun
ref: master
ref: aig-shared-ptr-better-fix
path: arjun
- name: Build arjun
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: nix build

on:
push:
branches: [ "*" ]
branches: [ "master" ]
pull_request:
branches: [ "*" ]

Expand Down
70 changes: 0 additions & 70 deletions .github/workflows/python-package-build.yml

This file was deleted.

75 changes: 0 additions & 75 deletions .github/workflows/python-wheel-build.yml

This file was deleted.

1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,4 @@ compare
/result
html/*.js
html/*.wasm
.claude
Loading