update ci risingwave image version to v1.5.2 (#22) #35
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test dbt-risingwave | |
on: [push] | |
jobs: | |
test-with-jaffle_shop: | |
runs-on: ubuntu-latest | |
strategy: | |
max-parallel: 5 | |
services: | |
risingwave: | |
image: ghcr.io/risingwavelabs/risingwave:v1.5.2 # RW version should be manually updated until a released version is compatiable with this adapter. | |
ports: | |
- 4566:4566 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python 3.10 | |
uses: actions/setup-python@v3 | |
with: | |
python-version: '3.10' | |
- name: Clone jaffle_shop | |
run: git clone --depth 1 https://github.com/dbt-labs/jaffle_shop.git | |
- name: Setup dbt profile | |
run: | | |
mkdir -p $HOME/.dbt && cat >> $HOME/.dbt/profiles.yml <<EOF | |
jaffle_shop: | |
outputs: | |
dev: | |
type: risingwave | |
host: 127.0.0.1 | |
user: root | |
pass: "" | |
dbname: dev | |
port: 4566 | |
schema: public | |
target: dev | |
EOF | |
- name: Install dbt-risingwave globally | |
run: python3 -m pip install . | |
- name: dbt-seed | |
run: dbt seed | |
working-directory: jaffle_shop | |
- name: dbt-run | |
run: dbt run | |
working-directory: jaffle_shop | |
- name: dbt-doc | |
run: dbt docs generate | |
working-directory: jaffle_shop |