Skip to content

Commit

Permalink
Update build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
msoos committed Apr 11, 2024
1 parent 19dea00 commit 4ef9292
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,42 @@ jobs:
cmake ..
make
cd ../..
- name: Checkout Cadical
uses: actions/checkout@v2
with:
repository: meelgroup/cadical
ref: mate-only-libraries-1.8.0
path: cadical

- name: Build Cadical
run: |
cd cadical
./configure
make -j8
cd ..
- name: Checkout Cadiback
uses: actions/checkout@v2
with:
repository: meelgroup/cadiback
ref: mate
path: cadiback

- name: Build Cadiback
run: |
cd cadiback
./configure
make -j8
cd ..
- name: Build Arjun
run: |
cd arjun
mkdir build && cd build
cmake ..
make
cd ../..
- name: Checkout Arjun
uses: actions/checkout@v2
Expand Down

0 comments on commit 4ef9292

Please sign in to comment.