Skip to content

Commit

Permalink
update CI
Browse files Browse the repository at this point in the history
  • Loading branch information
WeiqiNs committed Nov 2, 2024
1 parent 50d0c8e commit 8465bcc
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ jobs:
run: |
mkdir relic/build
cd relic/build
sudo ../preset/gmp-pbc-bls381.sh .. && make && make install
../preset/gmp-pbc-bls381.sh ..
sudo make && make install
- name: Checkout LibRBP
uses: actions/checkout@v4
Expand All @@ -34,7 +35,8 @@ jobs:
run: |
mkdir LibRBP/build
cd LibRBP/build
sudo cmake .. && make && make install
cmake ..
sudo make && make install
- name: Checkout main repository
uses: actions/checkout@v4
Expand All @@ -43,7 +45,8 @@ jobs:
run: |
mkdir build
cd build
sudo cmake .. && make
cmake ..
sudo make
- name: Run tests
run: |
Expand Down

0 comments on commit 8465bcc

Please sign in to comment.