File tree Expand file tree Collapse file tree 1 file changed +44
-0
lines changed
Expand file tree Collapse file tree 1 file changed +44
-0
lines changed Original file line number Diff line number Diff line change 1+ name : duckdb demo build
2+ on :
3+ pull_request_review :
4+ types : [submitted]
5+
6+ jobs :
7+ mimic-iv-sqlite :
8+ # only run if PR is approved
9+ if : github.event.review.state == 'approved'
10+ runs-on : ubuntu-20.04
11+
12+ steps :
13+ - name : Check out repository code
14+ uses : actions/checkout@v3
15+
16+ - name : Install dependencies and download CLI
17+ run : |
18+ apt-get install unzip
19+ wget https://github.com/duckdb/duckdb/releases/download/v0.6.1/duckdb_cli-linux-amd64.zip
20+ unzip duckdb_cli-linux-amd64.zip
21+
22+ - name : Download demo data
23+ uses : ./.github/actions/download-demo
24+ with :
25+ gcp-project-id : ${{ secrets.GCP_PROJECT_ID }}
26+ gcp-sa-key : ${{ secrets.GCP_SA_KEY }}
27+
28+ - name : Load icu/hosp data into duckdb
29+ run : |
30+ echo "Running duckdb build."
31+ ./${BUILDCODE_PATH}/import_duckdb.sh
32+
33+ echo `md5sum mimic4.db`
34+
35+ env :
36+ BUILDCODE_PATH : mimic-iv/buildmimic/duckdb
37+
38+
39+
40+ Linux 64-bit :
41+
42+ Linux 32-bit : https://github.com/duckdb/duckdb/releases/download/v0.6.1/duckdb_cli-linux-i386.zip
43+
44+ Linux Raspberry Pi : https://github.com/duckdb/duckdb/releases/download/v0.6.1/duckdb_cli-linux-rpi.zip
You can’t perform that action at this time.
0 commit comments