Skip to content

Commit

Permalink
ci: Fix benchmark filters
Browse files Browse the repository at this point in the history
  • Loading branch information
HDauven committed Sep 2, 2024
1 parent f2990d2 commit 7b498de
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/benchmarks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ on:
push:
branches:
- master
- ci-fix
workflow_dispatch:

jobs:
# Job to run change detection
Expand All @@ -19,8 +21,8 @@ jobs:
with:
filters: |
run-ci:
- 'rusk/**/*
- 'node/**/*
- 'rusk/**/*'
- 'node/**/*'
predicate-quantifier: 'some'

benchmark:
Expand Down
3 changes: 0 additions & 3 deletions rusk/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,6 @@ doc: ## Run doc gen
build: ## Build rusk binary
@cargo build --release

build-bench: ## Build the benchmarks
@cargo bench --features testwallet --no-run

bench: ## Run the benchmarks
@cargo bench --features testwallet

Expand Down
1 change: 0 additions & 1 deletion rusk/benches/block_ingestion.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ use rusk::Rusk;
use tempfile::tempdir;

use common::state::new_state;

const BLOCK_GAS_LIMIT: u64 = 1_000_000_000_000;

fn load_phoenix_txs() -> Vec<Transaction> {
Expand Down

0 comments on commit 7b498de

Please sign in to comment.