Skip to content

Commit

Permalink
Merge pull request #3 from aceforeverd/feat-0.2
Browse files Browse the repository at this point in the history
ci: fix workflow bootstrapping issue
  • Loading branch information
aceforeverd authored Mar 26, 2024
2 parents 63e12d2 + ed5bf5b commit 10ac89e
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,20 @@ jobs:
steps:
- uses: actions/checkout@v4

- uses: actions/setup-go@v4
- uses: actions/setup-go@v5
with:
go-version: '^1.18'

- name: OpenMLDB cluster
run: |
docker compose -f docker-compose.yml up -d
- name: verbose services
# ensure all services is up
run: |
sleep 60
docker compose --file docker-compose.yml ps -a
- name: init test database
run: |
docker compose -f docker-compose.yml exec openmldb-ns1 /opt/openmldb/bin/openmldb --zk_cluster=openmldb-zk:2181 --zk_root_path=/openmldb --role=sql_client --cmd 'CREATE DATABASE test_db'
Expand Down

0 comments on commit 10ac89e

Please sign in to comment.