We have a need to lock the version of Django for production and tests, but also to test on newer versions of Django so that we can get the repo ready for long-term-support releases. We've been doing that by extracting the `django==x.y.z` from the pip-compiled files and moving it to a django.txt that is then co-installed but can be overridden during tests. The problem is that this can result in broken packages. The approach here is to have `make test-requirements` continue to ensure a consistent set of packages, and then install a different Django on top of that in the CI script -- and call `pip check` to make sure that combination isn't broken. Adding Django 4.0 to the unit-tests.yml matrix will now correctly result in this error and a failing job: `django-splash 1.2.1 has requirement Django<4.0, but you have django 4.0.8.` The other half of this is to change other CI runners to remove their ability to control the Django version, since it's complicated to make this work, and we probably only need it in unit-tests.yml. Convert them to just use `make test-requirements`. Also: - Simplify handling of `pip --src` by setting `PIP_SRC` (rather than our own `PIP_SRC_DIR`, which pip ignores because `--src-dir` isn't an option that it knows). This is needed to allow `make test-requirements` to do the pip calls. An alternative would be to set a pip-options env var for the make target to use, but `PIP_SRC` already exists. - Remove outdated modifications to common_constraints - Add comment explaining why pylint tests need dev-requirements
61 lines
1.8 KiB
Docker
61 lines
1.8 KiB
Docker
FROM summerwind/actions-runner:v2.288.1-ubuntu-20.04-c221b6e as base
|
|
|
|
USER root
|
|
|
|
# Install system requirements
|
|
RUN apt-get update && \
|
|
# Global requirements
|
|
DEBIAN_FRONTEND=noninteractive apt-get install --yes \
|
|
build-essential git language-pack-en libmysqlclient-dev libssl-dev libxml2-dev \
|
|
libxmlsec1-dev libxslt1-dev \
|
|
# lynx: Required by https://github.com/openedx/edx-platform/blob/b489a4ecb122/openedx/core/lib/html_to_text.py#L16
|
|
lynx xvfb pkg-config \
|
|
python3-dev python3-venv \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
# Install Mongodb 4.4
|
|
RUN wget -qO - https://www.mongodb.org/static/pgp/server-4.4.asc | apt-key add -
|
|
RUN echo "deb https://repo.mongodb.org/apt/ubuntu focal/mongodb-org/4.4 multiverse" | tee /etc/apt/sources.list.d/mongodb-org-4.4.list
|
|
RUN apt-get update && apt-get install -y mongodb-org=4.4.13
|
|
EXPOSE 27017
|
|
|
|
RUN locale-gen en_US.UTF-8
|
|
ENV LANG en_US.UTF-8
|
|
ENV LANGUAGE en_US:en
|
|
ENV LC_ALL en_US.UTF-8
|
|
|
|
WORKDIR /edx/app/edxapp/edx-platform
|
|
|
|
ENV PATH /edx/app/edxapp/nodeenv/bin:${PATH}
|
|
ENV PATH ./node_modules/.bin:${PATH}
|
|
ENV CONFIG_ROOT /edx/etc/
|
|
ENV PATH /edx/app/edxapp/edx-platform/bin:${PATH}
|
|
ENV SETTINGS production
|
|
RUN mkdir -p /edx/etc/
|
|
|
|
ENV VIRTUAL_ENV=/edx/app/edxapp/venvs/edxapp
|
|
RUN python3.8 -m venv $VIRTUAL_ENV
|
|
ENV PATH="$VIRTUAL_ENV/bin:$PATH"
|
|
|
|
|
|
FROM base as build
|
|
|
|
# Install Python requirements
|
|
COPY setup.py setup.py
|
|
COPY openedx/core/lib openedx/core/lib
|
|
COPY lms lms
|
|
COPY cms cms
|
|
COPY requirements/pip.txt requirements/pip.txt
|
|
COPY requirements/edx/pip-tools.txt requirements/edx/pip-tools.txt
|
|
COPY requirements/edx/testing.txt requirements/edx/testing.txt
|
|
COPY Makefile Makefile
|
|
RUN make test-requirements
|
|
|
|
FROM base as runner
|
|
|
|
COPY --from=build /edx/app/edxapp/venvs/edxapp /edx/app/edxapp/venvs/edxapp
|
|
|
|
USER runner
|
|
|
|
CMD ["/entrypoint.sh"]
|