From 3265b85d0abcef7632396c2577f2f49c91ef1fd2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gerg=C5=91=20Jedlicska?= <57442769+gjedlicska@users.noreply.github.com> Date: Sun, 19 Jun 2022 15:47:21 +0200 Subject: [PATCH] Add minio container to the test deps (#807) * ci(circleci): add S3 storage to test deps * chore(cicleci): clean rando env variables * ci(circleci): update postgres to latest version for forward comp testing * ci(circleci): re-add removed env vars --- .circleci/config.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index ff1126ccb..bdd82cc24 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -115,11 +115,15 @@ jobs: docker: - image: cimg/node:16.15 - image: cimg/redis:6.2.6 - - image: 'cimg/postgres:12.8' + - image: 'cimg/postgres:14.2' environment: POSTGRES_DB: speckle2_test POSTGRES_PASSWORD: speckle POSTGRES_USER: speckle + - image: 'minio/minio' + command: server /data --console-address ":9001" + # environment: + environment: NODE_ENV: test DATABASE_URL: 'postgres://speckle:speckle@localhost:5432/speckle2_test' @@ -128,7 +132,6 @@ jobs: SESSION_SECRET: 'keyboard cat' STRATEGY_LOCAL: 'true' CANONICAL_URL: 'http://localhost:3000' - DISABLE_FILE_UPLOADS: 'true' S3_ENDPOINT: 'http://localhost:9000' S3_ACCESS_KEY: 'minioadmin' S3_SECRET_KEY: 'minioadmin'