-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
13 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
[bumpversion] | ||
current_version = 17.2.0 | ||
current_version = 18.0.0 | ||
commit = False | ||
tag = False | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,4 +2,4 @@ | |
Tutor Distro version. | ||
""" | ||
|
||
__version__ = "17.2.0" | ||
__version__ = "18.0.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,15 @@ | ||
ENV NO_PYTHON_UNINSTALL 1 | ||
ENV NO_PREREQ_INSTALL 1 | ||
RUN openedx-assets xmodule \ | ||
&& openedx-assets npm \ | ||
&& openedx-assets webpack --env=prod \ | ||
&& openedx-assets common | ||
RUN npm run postinstall \ | ||
&& npm run webpack \ | ||
&& npm run compile-sass -- --skip-themes | ||
{% if DISTRO_THEMES_ROOT is defined %} | ||
COPY --chown=app:app ./themes/ {{ DISTRO_THEMES_ROOT }} | ||
{% endif %} | ||
{% if DISTRO_THEME_DIRS is defined and DISTRO_THEMES_NAME is defined %} | ||
RUN openedx-assets themes \ | ||
--theme-dirs {{ DISTRO_THEME_DIRS | join(' ') }} \ | ||
--themes {{ DISTRO_THEMES_NAME | join(' ') }} \ | ||
&& openedx-assets collect --settings=tutor.assets \ | ||
RUN npm run compile-sass -- \ | ||
--theme-dir {{ DISTRO_THEME_DIRS | join(' --theme-dir ') }} \ | ||
--theme {{ DISTRO_THEMES_NAME | join(' --theme ') }} \ | ||
&& ./manage.py lms collectstatic --noinput --settings=tutor.assets \ | ||
&& rdfind -makesymlinks true -followsymlinks true /openedx/staticfiles/ | ||
{% endif %} |