add zkp transfer proof && ffi interface #381
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: Feature-Test | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v1 | |
| - name: Nightly default | |
| run: rustup default nightly | |
| - name: Test Hex java features | |
| run: cd ffi/ffi_java/ffi_java_crypto/ && cargo build --features "wedpr_f_hex, wedpr_f_ecies_secp256k1, wedpr_f_signature_secp256k1, wedpr_f_hash_keccak256, wedpr_f_signature_sm2, wedpr_f_hash_sm3, wedpr_f_vrf_curve25519" --no-default-features | |
| - name: Test Hex C features | |
| run: cd ffi/ffi_c/ffi_c_crypto/ && cargo build --features "wedpr_f_hex, wedpr_f_ecies_secp256k1, wedpr_f_signature_secp256k1, wedpr_f_hash_keccak256, wedpr_f_signature_sm2, wedpr_f_hash_sm3, wedpr_f_vrf_curve25519" --no-default-features | |