feat: bls public key validation #376
This file contains 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: Test | |
on: | |
push: | |
branches: | |
- "master" | |
- "develop" | |
pull_request: | |
types: [ready_for_review, synchronize, opened] | |
jobs: | |
format: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
with: | |
ref: ${{ github.head_ref }} | |
- name: Merge Conflict finder | |
uses: olivernybroe/action-conflict-finder@v1.1 | |
- name: Use Java Version 22 | |
uses: actions/setup-java@v2 | |
with: | |
distribution: "adopt" | |
java-version: "22" | |
cache: "gradle" | |
- name: Format code | |
run: gradle format | |
- name: Commit fixed code | |
uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_message: "style: resolve style guide violations" | |
branch: ${{ github.head_ref }} | |
unit: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
with: | |
ref: ${{ github.head_ref }} | |
- name: Merge Conflict finder | |
uses: olivernybroe/action-conflict-finder@v1.1 | |
- name: Install & build herumi/mcl | |
run: | | |
git clone https://github.com/herumi/mcl | |
cd mcl | |
mkdir build | |
cd build | |
cmake .. | |
make | |
- name: Build Java FFI | |
run: | | |
echo "contents of mcl" | |
ls $HOME/work/java-crypto/java-crypto/mcl/build/lib | |
cd $HOME/work/java-crypto/java-crypto/mcl/ffi/java | |
# Fix `Could not find MCL_LIBRARY using the following names: mcl` error | |
awk '{if ($0 ~ /set\(CMAKE_FIND_LIBRARY_SUFFIXES .a .lib\)/) {print "set(CMAKE_FIND_LIBRARY_SUFFIXES .a .lib .dylib .so)"} else {print $0}}' CMakeLists.txt > CMakeLists.tmp && mv CMakeLists.tmp CMakeLists.txt | |
# TBD | |
awk '{if ($0 ~ /option\(MCL_LINK_DIR "Absolute path where mcl static or dynamic library resides"\)/) {print "option(MCL_LINK_DIR \"Absolute path where mcl static or dynamic library resides\" \"/home/runner/work/java-crypto/java-crypto/mcl/build/lib;/home/runner/work/java-crypto/java-crypto/mcl/lib\")"} else {print $0}}' CMakeLists.txt > CMakeLists.tmp && mv CMakeLists.tmp CMakeLists.txt | |
cat CMakeLists.txt | |
mkdir build | |
cd build | |
cmake .. | |
cmake --build . --config Release | |
- name: Install Nix | |
uses: cachix/install-nix-action@v27 | |
- name: Install libsecp256k1 | |
run: | | |
nix profile install nixpkgs#secp256k1 | |
env: | |
NIX_PATH: $HOME/.nix-profile/bin | |
- name: Set LD_LIBRARY_PATH | |
run: echo "LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$HOME/.nix-profile/lib" >> $GITHUB_ENV | |
- name: Use Java Version 22 | |
uses: actions/setup-java@v2 | |
with: | |
distribution: "adopt" | |
java-version: "22" | |
cache: "gradle" | |
- name: Install | |
run: gradle dependencies | |
- name: Test | |
run: gradle test && gradle jacocoTestReport | |
- name: Codecov | |
run: bash <(curl -s https://codecov.io/bash) -t ${{ secrets.CODECOV_TOKEN }} |