Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: BI-0 fix e2e tasks #758

Merged
merged 1 commit into from
Dec 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tools/e2e/Taskfile.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ tasks:
- DETACH to run in foreground mode, e.g. `task docker-start DETACH=false`, default is true
cmds:
- task: _docker
vars: { COMMAND: 'up {{if eq .DETACH "true"}} --detach {{end}} {{.CLI_ARGS}}' }
vars: { COMMAND: 'up {{if eq .DETACH "true"}} --detach {{end}} --no-build --quiet-pull datalens-from-image {{.CLI_ARGS}}' }
vars:
DETACH: '{{.DETACH | default "true"}}'

Expand Down
10 changes: 6 additions & 4 deletions tools/e2e/docker-compose.e2e-dev-backend.yaml
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
version: "3.7"

services:
us:
extra_hosts: !reset null

control-api:
image: ${CONTROL_API_TAG}

data-api:
image: ${DATA_API_TAG}

datalens:
datalens-from-image:
image: ${DATALENS_UI_TAG}
build: !reset null
ports:
- 8080:8080
Loading