Skip to content

Commit

Permalink
Debugging failing tests, Temp removed other workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremyfelder committed Sep 17, 2024
1 parent b58af44 commit f674f14
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 244 deletions.
110 changes: 0 additions & 110 deletions .github/workflows/cpp.yml

This file was deleted.

68 changes: 0 additions & 68 deletions .github/workflows/examples.yml

This file was deleted.

4 changes: 2 additions & 2 deletions .github/workflows/golang.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ jobs:
run: |
CURVE=$(echo ${{ matrix.curve.name }} | sed -e 's/_//g')
export ICICLE_BACKEND_INSTALL_DIR=/usr/local/lib
go test ./$CURVE/tests -count=1 -failfast -p 2 -timeout 60m -v
go test ./$CURVE/tests -count=1 -p 2 -timeout 60m -v
build-fields-linux:
name: Build and test fields on Linux
Expand Down Expand Up @@ -121,4 +121,4 @@ jobs:
run: |
FIELD=$(echo ${{ matrix.field.name }} | sed -e 's/_//g')
export ICICLE_BACKEND_INSTALL_DIR=/usr/local/lib
go test ./$FIELD/tests -count=1 -failfast -p 2 -timeout 60m -v
go test ./$FIELD/tests -count=1 -p 2 -timeout 60m -v
64 changes: 0 additions & 64 deletions .github/workflows/rust.yml

This file was deleted.

1 change: 1 addition & 0 deletions icicle/src/curves/ffi_extern.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ extern "C" void CONCAT_EXPAND(CURVE, to_affine)(projective_t* point, affine_t* p

extern "C" void CONCAT_EXPAND(CURVE, from_affine)(affine_t* point, projective_t* point_out)
{
std::cout << "from_affine" << std::endl;
*point_out = projective_t::from_affine(*point);
}

Expand Down

0 comments on commit f674f14

Please sign in to comment.