Skip to content

Commit

Permalink
ci: add ci task
Browse files Browse the repository at this point in the history
  • Loading branch information
sunng87 committed Sep 8, 2024
1 parent 9492566 commit 7fdc55d
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: CI
on:
push:
- branches: [ master ]
pull_request:
- branches: [ master ]

jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: checkout driver
uses: actions/checkout@v4
with:
path: ${{ github.workspace }}/driver
- name: checkout metabase
uses: actions/checkout@v4
with:
repository: metabase/metabase
path: ${{ github.workspace }}/metabase
- name: install java
uses: actions/setup-java@v4
with:
distribution: 'adopt'
java-version: '21'
- name: Install clojure tools
uses: DeLaGuardo/[email protected]
with:
cli: 'latest'
- name: build driver
run: |
export DRIVER_PATH=${{ github.workspace }}/driver
cd ${{ github.workspace }}/metabase
clojure \
-Sdeps "{:aliases {:greptimedb {:extra-deps {com.metabase/greptimedb-driver {:local/root \"$DRIVER_PATH\"}}}}}" \
-X:build:greptimedb \
build-drivers.build-driver/build-driver! \
"{:driver :greptimedb, :project-dir \"$DRIVER_PATH\", :target-dir \"$DRIVER_PATH/target\"}"

0 comments on commit 7fdc55d

Please sign in to comment.