deploy prod_py2.txt instead of prod.txt (#9390)

This commit is contained in:
Andrew Williamson 2018-09-10 16:14:43 +01:00 коммит произвёл GitHub
Родитель 0e0db75601
Коммит 1003752412
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 8 добавлений и 3 удалений

Просмотреть файл

@ -71,7 +71,7 @@ WORKDIR /data/olympia
# Install all python requires
RUN pip install --no-cache-dir --exists-action=w --no-deps -r requirements/system.txt \
&& pip install --no-cache-dir --exists-action=w --no-deps -r requirements/prod.txt \
&& pip install --no-cache-dir --exists-action=w --no-deps -r requirements/prod_py2.txt \
&& pip install --no-cache-dir --exists-action=w --no-deps -e .
# Link /usr/sbin/uwsgi and /usr/bin/uwsgi to deal with migration from Centos -> Debian

Просмотреть файл

@ -74,7 +74,8 @@ jobs:
- restore_cache:
keys:
- uitest-cache-{{ checksum "requirements/docs.txt" }}
- uitest-cache-{{ checksum "requirements/prod.txt" }}
- uitest-cache-{{ checksum "requirements/prod_py2.txt" }}
- uitest-cache-{{ checksum "requirements/tests.txt" }}
- uitest-cache-{{ checksum "requirements/dev.txt" }}
- uitest-cache-{{ checksum "requirements/uitests.txt" }}
- uitest-cache-
@ -116,7 +117,11 @@ jobs:
paths:
- .tox
- save_cache:
key: uitest-cache-{{ checksum "requirements/prod.txt" }}
key: uitest-cache-{{ checksum "requirements/prod_py2.txt" }}
paths:
- .tox
- save_cache:
key: uitest-cache-{{ checksum "requirements/tests.txt" }}
paths:
- .tox
- save_cache: