Use .gitea
This commit is contained in:
parent
13001382c1
commit
cee67f4fad
4
.github/workflows/old_tests.yml
vendored
4
.github/workflows/old_tests.yml
vendored
@ -56,7 +56,7 @@ jobs:
|
|||||||
|
|
||||||
- name: Run docker compose
|
- name: Run docker compose
|
||||||
run: |
|
run: |
|
||||||
docker compose up -d
|
docker-compose up -d
|
||||||
|
|
||||||
- name: Give the migration a few seconds
|
- name: Give the migration a few seconds
|
||||||
run: sleep 30;
|
run: sleep 30;
|
||||||
@ -111,7 +111,7 @@ jobs:
|
|||||||
|
|
||||||
- name: Run docker compose
|
- name: Run docker compose
|
||||||
run: |
|
run: |
|
||||||
docker compose \
|
docker-compose \
|
||||||
-f "$GITHUB_WORKSPACE/stack-orchestrator/docker/local/docker-compose-go-ethereum.yml" \
|
-f "$GITHUB_WORKSPACE/stack-orchestrator/docker/local/docker-compose-go-ethereum.yml" \
|
||||||
-f "$GITHUB_WORKSPACE/stack-orchestrator/docker/local/docker-compose-db-sharding.yml" \
|
-f "$GITHUB_WORKSPACE/stack-orchestrator/docker/local/docker-compose-db-sharding.yml" \
|
||||||
--env-file $GITHUB_WORKSPACE/config.sh \
|
--env-file $GITHUB_WORKSPACE/config.sh \
|
||||||
|
2
.github/workflows/tests.yml
vendored
2
.github/workflows/tests.yml
vendored
@ -55,7 +55,7 @@ jobs:
|
|||||||
|
|
||||||
- name: Run docker compose
|
- name: Run docker compose
|
||||||
run: |
|
run: |
|
||||||
docker compose up -d
|
docker-compose up -d
|
||||||
|
|
||||||
- name: Give the migration a few seconds
|
- name: Give the migration a few seconds
|
||||||
run: sleep 30;
|
run: sleep 30;
|
||||||
|
@ -25,8 +25,8 @@ services:
|
|||||||
USE_GENESIS: "true"
|
USE_GENESIS: "true"
|
||||||
EXTRA_START_ARGS: ${extra_args}
|
EXTRA_START_ARGS: ${extra_args}
|
||||||
ports:
|
ports:
|
||||||
- "8545:8545"
|
- "127.0.0.1:8545:8545"
|
||||||
- "8546:8546"
|
- "127.0.0.1:8546:8546"
|
||||||
|
|
||||||
migrations:
|
migrations:
|
||||||
restart: on-failure
|
restart: on-failure
|
||||||
@ -49,6 +49,6 @@ services:
|
|||||||
POSTGRES_DB: "vulcanize_testing"
|
POSTGRES_DB: "vulcanize_testing"
|
||||||
POSTGRES_PASSWORD: "password"
|
POSTGRES_PASSWORD: "password"
|
||||||
ports:
|
ports:
|
||||||
- "8077:5432"
|
- "127.0.0.1:8077:5432"
|
||||||
volumes:
|
volumes:
|
||||||
- ./statediff/indexer/database/file:/file_indexer
|
- ./statediff/indexer/database/file:/file_indexer
|
||||||
|
@ -22,6 +22,6 @@ services:
|
|||||||
POSTGRES_DB: "vulcanize_testing"
|
POSTGRES_DB: "vulcanize_testing"
|
||||||
POSTGRES_PASSWORD: "password"
|
POSTGRES_PASSWORD: "password"
|
||||||
ports:
|
ports:
|
||||||
- "8077:5432"
|
- "127.0.0.1:8077:5432"
|
||||||
volumes:
|
volumes:
|
||||||
- ./statediff/indexer/database/file:/file_indexer
|
- ./statediff/indexer/database/file:/file_indexer
|
||||||
|
@ -47,7 +47,7 @@ func ResolveDriverType(str string) (DriverType, error) {
|
|||||||
|
|
||||||
// DefaultConfig are default parameters for connecting to a Postgres sql
|
// DefaultConfig are default parameters for connecting to a Postgres sql
|
||||||
var DefaultConfig = Config{
|
var DefaultConfig = Config{
|
||||||
Hostname: "172.17.0.1",
|
Hostname: "localhost",
|
||||||
Port: 8077,
|
Port: 8077,
|
||||||
DatabaseName: "vulcanize_testing",
|
DatabaseName: "vulcanize_testing",
|
||||||
Username: "vdbm",
|
Username: "vdbm",
|
||||||
|
Loading…
Reference in New Issue
Block a user