Skip to content
This repository has been archived by the owner on Feb 17, 2025. It is now read-only.

Updating versions of math and algebra after changes in in-place operators operators += etc. #65

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 27 additions & 7 deletions .github/workflows/run_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,26 @@ jobs:
path: libs/marshalling/zk/test
- target: marshalling_r1cs_gg_ppzksnark_verification_key_test
path: libs/marshalling/zk/test
- target: algebra_curves_test
path: libs/algebra/test
- target: algebra_fields_test
path: libs/algebra/test
- target: algebra_hash_to_curve_test
path: libs/algebra/test
- target: algebra_pairing_test
path: libs/algebra/test
- target: math_expression_test
path: libs/math/test
- target: math_lagrange_interpolation_test
path: libs/math/test
- target: math_polynomial_test
path: libs/math/test
- target: math_polynomial_dfs_test
path: libs/math/test
- target: math_polynomial_arithmetic_test
path: libs/math/test
- target: math_polynomial_view_test
path: libs/math/test
steps:
- name: Cleanup # TODO - move to scripts on runner
run: |
Expand All @@ -117,10 +137,10 @@ jobs:
working-directory: ./build
run: cmake --build . -t ${{ matrix.target }}

# - name: Run test
# working-directory: ./build
# run: |
# cd ${{ matrix.path }}
# COLOR='\033[0;33m'
# echo -e "${COLOR}${{ matrix.target }}"
# ./${{ matrix.target }}
- name: Run test
working-directory: ./build
run: |
cd ${{ matrix.path }}
COLOR='\033[0;33m'
echo -e "${COLOR}${{ matrix.target }}"
./${{ matrix.target }}
2 changes: 1 addition & 1 deletion libs/math