diff --git a/.github/workflows/integer_benchmark.yml b/.github/workflows/integer_benchmark.yml index b148151f7..a8f50ab8d 100644 --- a/.github/workflows/integer_benchmark.yml +++ b/.github/workflows/integer_benchmark.yml @@ -23,6 +23,7 @@ on: env: CARGO_TERM_COLOR: always RESULTS_FILENAME: parsed_benchmark_results_${{ github.sha }}.json + PARSE_INTEGER_BENCH_CSV_FILE: tfhe_rs_integer_benches_${{ github.sha }}.csv jobs: run-integer-benchmarks: @@ -63,14 +64,14 @@ jobs: - name: Parse benchmarks to csv run: | - make PARSE_INTEGER_BENCH_CSV_FILE=tfhe_rs_integer_benches_${{ github.sha }}.csv \ + make PARSE_INTEGER_BENCH_CSV_FILE=${{ env.PARSE_INTEGER_BENCH_CSV_FILE }} \ parse_integer_benches - name: Upload csv results artifact uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce with: name: ${{ github.sha }}_csv_integer - path: ${{ env.BENCH_CSV_FILE }} + path: ${{ env.PARSE_INTEGER_BENCH_CSV_FILE }} - name: Parse results run: |