Skip to content

Commit

Permalink
test not git cred and multiple reps
Browse files Browse the repository at this point in the history
  • Loading branch information
ledwards2225 committed Jun 12, 2023
1 parent 109e977 commit 9be3d0a
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 8 deletions.
16 changes: 9 additions & 7 deletions .github/workflows/benchmarks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ jobs:
ref: ${{ github.head_ref }} # checkout HEAD of triggering branch
token: ${{ secrets.GITHUB_TOKEN }}

# Adding some credentials to avoid complaints from git
- name: Configure git
run: |
git config user.name ledwards2225
git config user.email [email protected]
# # Adding some credentials to avoid complaints from git
# - name: Configure git
# run: |
# git config user.name ledwards2225
# git config user.email [email protected]

# Only run in Linux environment for now
- name: Setup Linux environment
Expand All @@ -50,7 +50,9 @@ jobs:
run: |
bin/ultra_honk_bench --benchmark_format=json > ../src/barretenberg/benchmark/honk_bench/bench_results.json
#
# Utilize github-action-benchmark to automatically update the plots at
# https://aztecprotocol.github.io/barretenberg/dev/bench/ with new benchmark data.
# This also creates an alert if benchmarks exceed the threshold specified below.
- name: Store benchmark result
uses: benchmark-action/github-action-benchmark@v1
with:
Expand All @@ -66,7 +68,7 @@ jobs:
# Show alert with commit comment on detecting possible performance regression
alert-threshold: '120%' # alert if bench result is 1.2x worse
comment-on-alert: true
fail-on-alert: true
fail-on-alert: false
alert-comment-cc-users: '@ledwards2225'


Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ struct BenchParams {
static constexpr size_t MIN_LOG_NUM_GATES = 16;
static constexpr size_t MAX_LOG_NUM_GATES = 16;

static constexpr size_t NUM_REPETITIONS = 1;
static constexpr size_t NUM_REPETITIONS = 2;
};

/**
Expand Down

0 comments on commit 9be3d0a

Please sign in to comment.