Skip to content

Commit 25ddfcf

Browse files
Debugging TLS builds on CI is fun, round 3
1 parent 9c31772 commit 25ddfcf

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/ci.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,8 @@ jobs:
124124
cp target/tls-gen/basic/result/server_localhost_key.pem tests/tls/certs/server_key.pem
125125
cp target/tls-gen/basic/result/client_localhost_certificate.pem tests/tls/certs/client_certificate.pem
126126
cp target/tls-gen/basic/result/client_localhost_key.pem tests/tls/certs/client_key.pem
127-
chmod 644 tests/tls/certs/*.pem
127+
chmod o+r tests/tls/certs/*
128+
chmod g+r tests/tls/certs/*
128129
129130
- name: Create RabbitMQ TLS configuration
130131
run: |
@@ -142,6 +143,7 @@ jobs:
142143
- name: Start RabbitMQ with TLS
143144
run: |
144145
docker run -d --name rabbitmq-tls \
146+
-e RABBITMQ_ERLANG_COOKIE='test-secret-cookie' \
145147
-p 15671:15671 \
146148
-p 15672:15672 \
147149
-p 5672:5672 \

0 commit comments

Comments
 (0)