Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
bgins committed Nov 1, 2024
1 parent 46ec483 commit 0a14c37
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
uses: actions/setup-node@v4

- name: Build Docker Images
run: ./stack compose-build
run: ./stack compose-build-ci

- name: Initialize chain
run: ./stack compose-init
Expand Down
14 changes: 12 additions & 2 deletions stack
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,21 @@ function compose-up() {
docker compose -f ./docker/docker-compose.dev.yml up "$@"
}

function compose-build-ci() {
load-local-env
compose-env
get-build-version
export LOG_LEVEL=debug
export API_HOST=""
export DISABLE_TELEMETRY=true
docker compose -f ./docker/docker-compose.dev.yml build "$@"
}

function compose-up-ci() {
load-local-env
compose-env
export LOG_LEVEL=debug
export API_HOST=
export API_HOST=""
export DISABLE_TELEMETRY=true
docker compose -f ./docker/docker-compose.dev.yml up "$@"
}
Expand Down Expand Up @@ -369,7 +379,7 @@ function integration-tests() {
function integration-tests-ci() {
load-local-env
export LOG_LEVEL=debug
export API_HOST=
export API_HOST=""
export DISABLE_TELEMETRY=true
cd test
go test -v -count 1 .
Expand Down

0 comments on commit 0a14c37

Please sign in to comment.