Skip to content

Commit 4cc8e66

Browse files
authored
Merge pull request #21 from DataRecce/fix/upload-duckdb-file-with-recces-state-file
[Fix] Upload duckdb file with recce state file
2 parents a7b5dd9 + 69bf9e8 commit 4cc8e66

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.devcontainer/devcontainer.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44
"containerEnv": {
55
"RECCE_CI_WORKFLOW_NAME": ".github/workflows/recce_ci.yml", // Path to the Recce CI workflow file
66
"DEPENDENCIES_FILE": "requirements.txt", // Path to the python dependencies file
7-
"POST_INSTALL_DEPENDENCIES_COMMAND": "pip install gradio" // Command to install python dependencies
7+
"POST_INSTALL_DEPENDENCIES_COMMAND": "pip install gradio", // Command to install python dependencies
8+
"PRE_LAUNCH_RECCE_SERVER_COMMAND": "cp .recce/recce-state-file/jaffle_shop.duckdb ."
89
},
910
"customizations": {
1011
"vscode": {

.github/workflows/recce_ci.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,9 @@ jobs:
5757
id: recce-artifact-uploader
5858
with:
5959
name: recce-state-file
60-
path: recce_state.json
60+
path: |
61+
recce_state.json
62+
jaffle_shop.duckdb
6163
6264
- name: Prepare Recce Summary
6365
id: recce-summary

0 commit comments

Comments
 (0)