From 3f76e83bcf061f73a0067202ac4d25eac0a95778 Mon Sep 17 00:00:00 2001 From: Ariel Mashraki Date: Wed, 20 Nov 2019 05:37:22 -0800 Subject: [PATCH] ent/circleci: set specific postgres versions (#174) Summary: Pull Request resolved: https://github.com/facebookincubator/ent/pull/174 Integration tests are failing with latest images. Reviewed By: idoshveki Differential Revision: D18614385 fbshipit-source-id: 80239c943cbef3a3cc0227f8052b2bac8f816533 --- .circleci/config.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 4958881ec..28b330ec9 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -71,17 +71,17 @@ jobs: environment: <<: *mysql_env MYSQL_TCP_PORT: 3308 - - image: circleci/postgres:10 + - image: circleci/postgres:10.0 environment: POSTGRES_DB: test POSTGRES_PASSWORD: pass command: -p 5430 - - image: circleci/postgres:11 + - image: circleci/postgres:11.0 environment: POSTGRES_DB: test POSTGRES_PASSWORD: pass command: -p 5431 - - image: circleci/postgres:12 + - image: circleci/postgres:12.1 environment: POSTGRES_DB: test POSTGRES_PASSWORD: pass