Skip to content
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
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,10 +60,10 @@ jobs:
# -- Step 8: Install bb for proof generation
- name: Install bb
run: |
curl -L https://raw.githubusercontent.com/AztecProtocol/aztec-packages/refs/heads/master/barretenberg/bbup/install | bash
export PATH="$HOME/.bb/bin:$HOME/.local/bin:$PATH"
"$HOME/.bb/bin/bbup"
echo "$HOME/.bb/bin" >> $GITHUB_PATH
curl -L https://raw.githubusercontent.com/AztecProtocol/aztec-packages/refs/heads/next/barretenberg/bbup/install | bash
export PATH="$HOME/.bb:$PATH"
"$HOME/.bb/bbup"
echo "$HOME/.bb" >> $GITHUB_PATH

# -- Step 9: Run the test suite
- name: cargo test
Expand Down
3 changes: 2 additions & 1 deletion tests/error_context.rs
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,8 @@ fn test_file_operation_error_context() {

let config = Config {
verbose: true,
dry_run: false, // Will try actual file operations
// Avoid deleting the workspace target/ during CI; dry-run is enough here.
dry_run: true,
pkg: Some("nonexistent_package".to_string()),
quiet: false,
runner: Arc::new(failing_runner),
Expand Down
Loading