Skip to content

Commit e603fd8

Browse files
Fix environment variables in CI github action (#2024)
Fix environment variables in CI github action
1 parent bc726c9 commit e603fd8

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,9 @@ jobs:
2828
uses: gradle/actions/setup-gradle@v3
2929

3030
- name: Run unit tests
31+
env:
32+
USER: unittest
33+
USE_DOCKER_SERVICE: false
3134
run: ./gradlew --no-daemon test -x checkLicenseMain -x checkLicenses -x spotlessCheck -x spotlessApply -x spotlessJava -P edgeDepsTest
3235

3336
unit_test_jdk8:
@@ -59,6 +62,10 @@ jobs:
5962
up -d temporal
6063
6164
- name: Run unit tests
65+
env:
66+
USER: unittest
67+
TEMPORAL_SERVICE_ADDRESS: localhost:7233
68+
USE_DOCKER_SERVICE: true
6269
run: ./gradlew --no-daemon test -x checkLicenseMain -x checkLicenses -x spotlessCheck -x spotlessApply -x spotlessJava
6370

6471
copyright:

0 commit comments

Comments
 (0)