From df373b56097a3c59d98331dae200f983ef9b807a Mon Sep 17 00:00:00 2001 From: Kent Huang Date: Fri, 7 Jun 2024 02:04:58 +0800 Subject: [PATCH 1/2] [Fix] Upload duckdb file with recce state file Signed-off-by: Kent Huang --- .github/workflows/recce_ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/recce_ci.yml b/.github/workflows/recce_ci.yml index 62d4b6df..0b8fd21b 100644 --- a/.github/workflows/recce_ci.yml +++ b/.github/workflows/recce_ci.yml @@ -57,7 +57,9 @@ jobs: id: recce-artifact-uploader with: name: recce-state-file - path: recce_state.json + path: | + recce_state.json + jaffle_shop.duckdb - name: Prepare Recce Summary id: recce-summary From 69bf9e819a8665a038c9617f4357f9e21116a1ae Mon Sep 17 00:00:00 2001 From: Kent Huang Date: Fri, 7 Jun 2024 02:18:44 +0800 Subject: [PATCH 2/2] prepare duckdb file Signed-off-by: Kent Huang --- .devcontainer/devcontainer.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 72438ded..7d1fc17a 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -4,7 +4,8 @@ "containerEnv": { "RECCE_CI_WORKFLOW_NAME": ".github/workflows/recce_ci.yml", // Path to the Recce CI workflow file "DEPENDENCIES_FILE": "requirements.txt", // Path to the python dependencies file - "POST_INSTALL_DEPENDENCIES_COMMAND": "pip install gradio" // Command to install python dependencies + "POST_INSTALL_DEPENDENCIES_COMMAND": "pip install gradio", // Command to install python dependencies + "PRE_LAUNCH_RECCE_SERVER_COMMAND": "cp .recce/recce-state-file/jaffle_shop.duckdb ." }, "customizations": { "vscode": {