【发布时间】:2018-07-02 21:04:20
【问题描述】:
我正在尝试获得一定的承诺以通过 CircleCI 上的测试,但与我的本地环境存在一些差异,我仍在尝试解决这些差异。这是./circleci/config.yml 文件:
version: 2
jobs:
build:
working_directory: ~/lucy/lucy_web/
docker:
- image: python:3.6.0
environment:
DATABASE_URL: postgresql://my_app:my_password@localhost/my_db?sslmode=disable
- image: jannkleen/docker-postgres-gis-hstore
environment:
POSTGRES_USER: my_app
POSTGRES_DB: my_db
POSTGRES_PASSWORD: my_password
steps:
- checkout
- restore_cache:
key: deps1-{{ .Branch }}-{{ checksum "lucy-web/requirements.txt" }}
- run:
name: Install Python deps in a venv
command: |
cd lucy-web
python3 -m venv venv
. venv/bin/activate
pip3 install -r requirements.txt
- save_cache:
key: deps1-{{ .Branch }}-{{ checksum "lucy-web/requirements.txt" }}
paths:
- "venv"
- run:
command: |
cd lucy-web
source venv/bin/activate
python manage.py compilescss --verbosity 0
python manage.py collectstatic --clear --no-input --verbosity 0
python manage.py makemigrations --no-input --verbosity 0
python manage.py migrate --no-input --verbosity 0
python manage.py test
- store_artifacts:
path: test-reports/
destination: tr1
- store_test_results:
path: test-reports/
问题是由于hstore 类型不存在而导致测试出错:
django.db.utils.ProgrammingError: type "hstore" does not exist
LINE 1: ..., "options" varchar(255)[] NOT NULL, "conditions" hstore NOT...
^
Exited with code 1
在我的本地机器上,我通过运行psql my_db 后跟create extension hstore; 解决了这个问题。查看 PostgreSQL 镜像的源代码 (https://github.com/JannKleen/docker-postgres-gis-hstore),我相信它运行了以下 bash 脚本:
#!/bin/sh
POSTGRES="gosu postgres"
echo "******CREATING EXTENSIONS******"
${POSTGRES} psql -d postgres -c "UPDATE pg_database SET datallowconn = TRUE WHERE datname = 'template0';"
${POSTGRES} psql -d postgres -c "UPDATE pg_database SET datallowconn = TRUE WHERE datname = 'template1';"
${POSTGRES} psql -d template1 -c "CREATE EXTENSION IF NOT EXISTS hstore;"
${POSTGRES} psql -d template1 -c "CREATE EXTENSION IF NOT EXISTS postgis;"
${POSTGRES} psql -d template1 -c "CREATE EXTENSION IF NOT EXISTS postgis_topology;"
echo ""
echo "******DATABASE EXTENSIONS******"
据我了解,如果扩展是在template1 数据库中创建的,它也应该应用my_db 数据库,对吧? (参见https://www.postgresql.org/docs/9.5/static/manage-ag-templatedbs.html)
我该如何解决这个错误?
【问题讨论】:
标签: bash postgresql docker yaml circleci