diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 66e4d5f..f4e8014 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 diff --git a/tests/error_context.rs b/tests/error_context.rs index 2dc4a1d..45d2f72 100644 --- a/tests/error_context.rs +++ b/tests/error_context.rs @@ -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),