Skip to content

Commit 006d083

Browse files
Fix test reports
1 parent 2275874 commit 006d083

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

.semaphore/semaphore.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2438,6 +2438,12 @@ blocks:
24382438
commands:
24392439
- checkout && cd ee/ephemeral_environments
24402440
- make build
2441+
epilogue:
2442+
always:
2443+
commands:
2444+
- ls -la
2445+
- cd out
2446+
- ls -la
24412447
jobs:
24422448
- name: "Lint"
24432449
commands:
@@ -2447,7 +2453,6 @@ blocks:
24472453
- make lint.ex
24482454
- name: "Test"
24492455
commands:
2450-
- export TEST_RESULTS_NAME="Ephemeral Environments Tests"
24512456
- make test.ex
24522457
# RBAC EE
24532458
- name: "RBAC EE: Provision Test Image"

ee/ephemeral_environments/Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ TMP_REPO_DIR?=/tmp/internal_api
1010
CONTAINER_ENV_VARS = $(shell [ -f .env ] && sed 's/^/-e /' .env | tr '\n' ' ')
1111
ifdef CI
1212
CONTAINER_ENV_VARS := $(shell echo "$(CONTAINER_ENV_VARS)" | sed 's/-e POSTGRES_DB_HOST=[^ ]*/-e POSTGRES_DB_HOST=0.0.0.0/g')
13+
CONTAINER_ENV_VARS += -e CI=true
1314
$(info CI detected - CONTAINER_ENV_VARS: $(CONTAINER_ENV_VARS))
1415
endif
1516

0 commit comments

Comments
 (0)