7dae7ddc23
* fix: harmonydb: Use timestampz instead of timestamp across the schema * ci: Try YB 2.21 * try smaller alters
17 lines
481 B
YAML
17 lines
481 B
YAML
name: Start YugabyteDB
|
|
description: Install Yugabyte Database for Filecoin Lotus
|
|
|
|
runs:
|
|
using: composite
|
|
steps:
|
|
- run: docker run --rm --name yugabyte -d -p 5433:5433 yugabytedb/yugabyte:2.21.0.1-b1 bin/yugabyted start --daemon=false
|
|
shell: bash
|
|
- run: |
|
|
while true; do
|
|
status=$(docker exec yugabyte bin/yugabyted status);
|
|
echo $status;
|
|
echo $status | grep Running && break;
|
|
sleep 1;
|
|
done
|
|
shell: bash
|