From 42dfea376d26c3a5e3bc9c4dabe21ea7626e8de5 Mon Sep 17 00:00:00 2001 From: Stepan Kuzmin Date: Fri, 5 Oct 2018 17:41:16 +0300 Subject: [PATCH] ci: change images order --- .circleci/config.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 449ba1dd..8c60c011 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -3,16 +3,16 @@ version: 2 jobs: build: docker: + - image: circleci/rust:1.29 + environment: + DATABASE_URL: postgres://postgres@localhost/test + RUST_LOG: actix_web=debug,postgres=debug,martin=debug + - image: circleci/postgres:10-alpine-postgis environment: POSTGRES_USER: postgres POSTGRES_DB: test - - image: circleci/rust:1.29 - environment: - DATABASE_URL: postgres://postgres@localhost/test - RUST_LOG: actix_web=debug,postgres=debug,martin=debug - steps: - checkout