Skip to content

Commit

Permalink
Fix env var loading (#823)
Browse files Browse the repository at this point in the history
  • Loading branch information
samuelburnham authored Nov 1, 2023
1 parent ba7fc55 commit 062a427
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/bench-pr-comment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,11 +73,12 @@ jobs:
- uses: actions-rs/toolchain@v1
- uses: Swatinem/rust-cache@v2
- name: Load env vars
uses: xom9ikk/dotenv@v2
with:
path: bench.env
# Strict load => panic if .env file not found
load-mode: strict
run: |
set -a
source bench.env
set +a
env | grep -E 'LURK|EC_GPU|CUDA'
working-directory: ${{ github.workspace }}/benches
# Run the comparative benchmark and comment output on the PR
- uses: boa-dev/criterion-compare-action@v3
with:
Expand Down

1 comment on commit 062a427

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Benchmarks

Table of Contents

Benchmark Results

LEM Prove

Fibonacci-rc=100 Fibonacci-rc=600
num-100 6.83 s (✅ 1.00x) 7.47 s (✅ 1.09x slower)
num-200 14.48 s (✅ 1.00x) 16.74 s (❌ 1.16x slower)

Made with criterion-table

Please sign in to comment.