Skip to content

Commit 2336863

Browse files
committed
Use official minio image for integration tests
1 parent 502a61b commit 2336863

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,10 @@ jobs:
2020

2121
services:
2222
s3:
23-
image: bitnami/minio
23+
image: minio/minio
2424
ports:
2525
- 9000:9000
26+
options: server /data
2627

2728
steps:
2829
- name: Checkout repository

test/src/cognitect/aws/integration/s3_test.cljc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,8 +117,8 @@
117117
:hostname "localhost"
118118
:port 9000}
119119
:credentials-provider (creds/basic-credentials-provider
120-
{:access-key-id "minio"
121-
:secret-access-key "miniosecret"})})]
120+
{:access-key-id "minioadmin"
121+
:secret-access-key "minioadmin"})})]
122122
(testing (str "with http client " (class %))
123123
(test-s3-client s3)))))
124124

0 commit comments

Comments
 (0)