Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(ci): make test names unique for fft and ntt #1923

Merged
merged 2 commits into from
Jan 8, 2025
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
2 changes: 1 addition & 1 deletion .github/workflows/cargo_build_tfhe_ntt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ concurrency:
cancel-in-progress: true

jobs:
cargo-builds:
cargo-builds-ntt:
runs-on: ${{ matrix.os }}
strategy:
matrix:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/cargo_test_fft.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ concurrency:
cancel-in-progress: true

jobs:
cargo-tests:
cargo-tests-fft:
runs-on: ${{ matrix.runner_type }}
strategy:
matrix:
Expand All @@ -38,7 +38,7 @@ jobs:
run: |
make test_fft_no_std

cargo-tests-nightly:
cargo-tests-fft-nightly:
runs-on: ${{ matrix.runner_type }}
strategy:
matrix:
Expand All @@ -60,7 +60,7 @@ jobs:
run: |
make test_fft_no_std_nightly

cargo-tests-node-js:
cargo-tests-fft-node-js:
runs-on: "ubuntu-latest"
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/cargo_test_ntt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ concurrency:
cancel-in-progress: true

jobs:
cargo-tests:
cargo-tests-ntt:
runs-on: ${{ matrix.os }}
strategy:
matrix:
Expand All @@ -33,7 +33,7 @@ jobs:
- name: Test no-std
run: make test_ntt_no_std

cargo-tests-nightly:
cargo-tests-ntt-nightly:
runs-on: ${{ matrix.os }}
strategy:
matrix:
Expand Down
Loading