Skip to content

Commit

Permalink
fix(ci): debug lancedb
Browse files Browse the repository at this point in the history
  • Loading branch information
McPatate committed Nov 6, 2023
1 parent 6233db3 commit 537f0ec
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
8 changes: 4 additions & 4 deletions crates/testbed/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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?;
Expand Down Expand Up @@ -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?;
Expand Down

0 comments on commit 537f0ec

Please sign in to comment.