Add files via upload #33
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | name: SCQ CI | |
| on: [ push, pull_request, workflow_dispatch ] | |
| jobs: | |
| build_and_test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Install dependencies | |
| run: | | |
| sudo apt update | |
| sudo apt install -y build-essential libgmp-dev libmpfr-dev libssl-dev libgtest-dev cmake | |
| - name: Checkout RELIC | |
| uses: actions/checkout@v4 | |
| with: | |
| repository: relic-toolkit/relic | |
| path: relic | |
| - name: Install RELIC | |
| run: | | |
| mkdir relic/build && cd relic/build | |
| ../preset/gmp-pbc-bls381.sh .. && sudo make && sudo make install | |
| - name: Checkout LibRBP | |
| uses: actions/checkout@v4 | |
| with: | |
| repository: Weiqi97/LibRBP | |
| path: LibRBP | |
| - name: Install LibRBP | |
| run: | | |
| mkdir LibRBP/build && cd LibRBP/build | |
| cmake .. && sudo make && sudo make install | |
| - name: Checkout main repository | |
| uses: actions/checkout@v4 | |
| - name: Build the SCQ project | |
| run: | | |
| mkdir build && cd build | |
| cmake .. && sudo make | |
| - name: Run tests | |
| run: | | |
| cd build && ctest |