Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
zhoucheng361 committed Jan 6, 2025
1 parent c9a7fc9 commit ab9f38e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/scripts/start_meta_engine.sh
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ get_meta_url(){
elif [ "$meta" == "tidb" ]; then
meta_url="mysql://root:@(127.0.0.1:4000)/test"
elif [ "$meta" == "etcd" ]; then
meta_url="etcd://localhost:2379/jfs"
meta_url="etcd://localhost:2379/test"
elif [ "$meta" == "fdb" ]; then
meta_url="fdb:///home/runner/fdb.cluster?prefix=jfs"
elif [ "$meta" == "ob" ]; then
Expand All @@ -228,17 +228,17 @@ get_meta_url2(){
elif [ "$meta" == "sqlite3" ]; then
meta_url="sqlite3://test2.db"
elif [ "$meta" == "tikv" ]; then
meta_url="tikv://127.0.0.1:2379/test2"
meta_url="tikv://127.0.0.1:2379/jfs"
elif [ "$meta" == "badger" ]; then
meta_url="badger:///tmp/test2"
elif [ "$meta" == "mariadb" ]; then
meta_url="mysql://root:root@(127.0.0.1)/test2"
elif [ "$meta" == "tidb" ]; then
meta_url="mysql://root:@(127.0.0.1:4000)/test2"
elif [ "$meta" == "etcd" ]; then
meta_url="etcd://localhost:2379/jfs2"
meta_url="etcd://localhost:2379/test2"
elif [ "$meta" == "fdb" ]; then
meta_url="fdb:///home/runner/fdb.cluster?prefix=jfs2"
meta_url="fdb:///home/runner/fdb.cluster?prefix=kfs"
elif [ "$meta" == "ob" ]; then
meta_url="mysql://root:@\\(127.0.0.1:2881\\)/test2"
else
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/load.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
if [ "${{github.event_name}}" == "schedule" ] || [ "${{github.event_name}}" == "workflow_dispatch" ]; then
echo 'meta_matrix=["sqlite3", "redis", "mysql", "tikv", "tidb", "postgres", "mariadb", "fdb"]' >> $GITHUB_OUTPUT
else
echo 'meta_matrix=["fdb"]' >> $GITHUB_OUTPUT
echo 'meta_matrix=["tikv", "fdb"]' >> $GITHUB_OUTPUT
fi
outputs:
meta_matrix: ${{ steps.set-matrix.outputs.meta_matrix }}
Expand Down

0 comments on commit ab9f38e

Please sign in to comment.