From 537f0ec1f6b5226c064f9ea405f78693de394165 Mon Sep 17 00:00:00 2001 From: Luc Georges Date: Mon, 6 Nov 2023 19:12:27 +0100 Subject: [PATCH] fix(ci): debug lancedb --- .github/workflows/test.yml | 2 +- crates/testbed/src/main.rs | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 54c409b..0df7fa3 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -59,7 +59,7 @@ jobs: run: cargo build -r - name: Run testbed - run: cargo run --bin testbed -r -- --api-token $API_TOKEN -r `pwd`/crates/testbed/repositories-ci.yaml + run: cargo run --bin testbed -r -- --api-token $API_TOKEN -r `pwd`/crates/testbed/repositories-ci.yaml -f lancedb/lance if: github.event_name == 'push' || github.event_name == 'pull_request' env: API_TOKEN: ${{ secrets.API_TOKEN }} diff --git a/crates/testbed/src/main.rs b/crates/testbed/src/main.rs index 5266cea..258bd2d 100644 --- a/crates/testbed/src/main.rs +++ b/crates/testbed/src/main.rs @@ -343,8 +343,8 @@ async fn run_setup( let status = status_cmd .args(&command.1) .current_dir(&repo_path) - .stdout(Stdio::null()) - .stderr(Stdio::null()) + // .stdout(Stdio::null()) + // .stderr(Stdio::null()) .spawn()? .wait() .await?; @@ -375,8 +375,8 @@ async fn build( let status = status_cmd .args(args) .current_dir(repo_path) - .stdout(Stdio::null()) - .stderr(Stdio::null()) + // .stdout(Stdio::null()) + // .stderr(Stdio::null()) .spawn()? .wait() .await?;