CircleCI 没有选择运行步骤中定义的环境变量?

Kur*_*eek 5 python django yaml circleci

我试图运行一个Django项目,其中CircleCI测试manage.py确定的版本settings.py适用(development.pystaging.pyproduction.py从一个环境变量)ENV_ROLE。以前,如果未定义,ENV_ROLE则设置为默认值development,但我正在更改它,以便 DjangoImproperlyConfigured在未定义时抛出错误。

为了使测试通过,我需要ENV_ROLE在我们的 CircleCI 测试环境中定义环境变量。在https://circleci.com/docs/2.0/env-vars/#setting-an-environment-variable-in-a-step之后,我在run步骤中添加了以下内容:

      - run:
          environment:
            ENV_ROLE: development
Run Code Online (Sandbox Code Playgroud)

但是,我仍然从 CircleCI 收到此错误:

#!/bin/bash -eo pipefail
cd lucy-web
source venv/bin/activate
python manage.py compilescss --verbosity 0
python manage.py collectstatic --clear --no-input --verbosity 0
flake8
python manage.py test
Traceback (most recent call last):
  File "/root/lucy/lucy_web/lucy-web/env.py", line 5, in <module>
    ENV_ROLE = os.environ['ENV_ROLE']
  File "/usr/local/lib/python3.6/os.py", line 669, in __getitem__
    raise KeyError(key) from None
KeyError: 'ENV_ROLE'

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "manage.py", line 4, in <module>
    from env import ENV_ROLE
  File "/root/lucy/lucy_web/lucy-web/env.py", line 8, in <module>
    "No 'ENV_ROLE' environment variable is defined. "
django.core.exceptions.ImproperlyConfigured: No 'ENV_ROLE' environment variable is defined. Please define it as 'development', 'staging', or 'production'.
Exited with code 1
Run Code Online (Sandbox Code Playgroud)

这是完整的.circleci/config.yml

version: 2
jobs:
  build:
    working_directory: ~/lucy/lucy_web/
    docker:
      - image: python:3.6.5
        environment:
          DATABASE_URL: ...
      - image: jannkleen/docker-postgres-gis-hstore
        environment:
          POSTGRES_USER: ...
          POSTGRES_DB: ...
      - image: redis:4.0.9-alpine
    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:
          environment:
            ENV_ROLE: development
          command: |
            cd lucy-web
            source venv/bin/activate
            python manage.py compilescss --verbosity 0
            python manage.py collectstatic --clear --no-input --verbosity 0
            flake8
            python manage.py test
      - store_artifacts:
          path: test-reports/
          destination: tr1
      - store_test_results:
          path: test-reports/
  app_test:
    working_directory: ~/lucy/lucy_app
    docker:
      - image: node:8
    steps:
      - checkout
      - run:
          command: |
            cd lucy-app
            yarn install
            yarn lint
            yarn jest
workflows:
  version: 2
  build_and_test:
    jobs:
      - build
      - app_test
Run Code Online (Sandbox Code Playgroud)

Django 项目有一个修改manage.py

#!/usr/bin/env python
import os
import sys
from dotenv import load_dotenv, find_dotenv

if __name__ == "__main__":
    # Set environment variables from .env file
    load_dotenv(find_dotenv())

    # Determine which settings to apply (development, staging, or production)
    from env import ENV_ROLE
    os.environ.setdefault("DJANGO_SETTINGS_MODULE", f"lucy.settings.{ENV_ROLE}")
    try:
        from django.core.management import execute_from_command_line
    except ImportError:
        # The above import may fail for some other reason. Ensure that the
        # issue is really that Django is missing to avoid masking other
        # exceptions on Python 2.
        try:
            import django  # noqa: F401
        except ImportError:
            raise ImportError(
                "Couldn't import Django. Are you sure it's installed and "
                "available on your PYTHONPATH environment variable? Did you "
                "forget to activate a virtual environment?"
            )
        raise
    execute_from_command_line(sys.argv)
Run Code Online (Sandbox Code Playgroud)

whereenv.py检查ENV_ROLE环境变量是否已定义,ImproperlyConfigured否则抛出错误:

import os
from django.core.exceptions import ImproperlyConfigured

try:
    ENV_ROLE = os.environ['ENV_ROLE']
except KeyError:
    raise ImproperlyConfigured(
        "No 'ENV_ROLE' environment variable is defined. "
        "Please define it as 'development', 'staging', or 'production'.")
Run Code Online (Sandbox Code Playgroud)

我不明白为什么 CircleCI 没有“拾取”ENV_ROLE环境变量?我的语法或对文档的理解有问题吗?

Dia*_*lan 0

我使用circleCI + GAE时遇到了类似的问题;我认为在 .circleCI/config.yml 中设置的变量实际上从未真正进入应用程序,因为 GAE 运行的构建过程没有将它们传输进来。相反,我需要:

  • 制作多个 app.yaml 文件(在我的例子中为 app-staging.yaml 和 app-prod.yaml)
  • 更新 .circleci/config.yml 以在每个命令语句中使用这些内容,例如:

    命令:gcloud app deploy app-staging.yaml