We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a5d4156 commit 3b78e4fCopy full SHA for 3b78e4f
.github/workflows/ci-instrumentation-with-services.yml
@@ -145,6 +145,10 @@ jobs:
145
yard: true
146
rubocop: true
147
build: true
148
+
149
+ - name: Copy log4j.properties to temp directory
150
+ run: cp .github/services/zookeeper/log4j.properties ${{ runner.temp }}/log4j.properties
151
152
services:
153
zookeeper:
154
image: confluentinc/cp-zookeeper:latest
@@ -154,7 +158,7 @@ jobs:
158
ZOOKEEPER_CLIENT_PORT: 2181
155
159
ZOOKEEPER_TICK_TIME: 2000
156
160
volumes:
157
- - ${{ github.workspace }}/.github/services/zookeeper/log4j.properties:/etc/zookeeper/conf/log4j.properties
161
+ - ${{ runner.temp }}/log4j.properties:/etc/zookeeper/conf/log4j.properties
162
kafka:
163
image: confluentinc/cp-kafka:latest
164
ports:
0 commit comments