diff --git a/playbooks/roles/aws_devstack/tasks/main.yml b/playbooks/roles/aws_devstack/tasks/main.yml index 91263ea4c45..5b8628f9c6a 100644 --- a/playbooks/roles/aws_devstack/tasks/main.yml +++ b/playbooks/roles/aws_devstack/tasks/main.yml @@ -37,7 +37,7 @@ cd edx-repos/devstack/ make dev.pull.large-and-slow make dev.up.lms - . /home/ubuntu/.profile && docker compose exec lms env TERM=xterm-256color bash -c 'make requirements && npm ci && paver update_assets && python manage.py lms migrate' + . /home/ubuntu/.profile && docker compose exec lms env TERM=xterm-256color bash -c 'make requirements && npm ci && npm run build && ./manage.py lms collectstatic --noinput && ./manage.py cms collectstatic && python manage.py lms migrate' async: 1800 poll: 10 become_user: ubuntu diff --git a/playbooks/roles/edxapp/defaults/main.yml b/playbooks/roles/edxapp/defaults/main.yml index 666132d4be3..de3f47a7756 100644 --- a/playbooks/roles/edxapp/defaults/main.yml +++ b/playbooks/roles/edxapp/defaults/main.yml @@ -487,9 +487,6 @@ EDXAPP_CMS_STATIC_URL_BASE: "{{ EDXAPP_STATIC_URL_BASE }}" # does not affect verified students EDXAPP_PAID_COURSE_REGISTRATION_CURRENCY: ['usd', '$'] -# Configure paver tasks in edx-platform to skip Python/Ruby/Node installation -EDXAPP_NO_PREREQ_INSTALL: 1 - # whether to setup the python codejail or not EDXAPP_PYTHON_SANDBOX: true # this next setting, if true, turns on actual sandbox enforcement. If not true, diff --git a/playbooks/roles/edxapp/tasks/main.yml b/playbooks/roles/edxapp/tasks/main.yml index a2ed29b126f..8e6d57440a6 100644 --- a/playbooks/roles/edxapp/tasks/main.yml +++ b/playbooks/roles/edxapp/tasks/main.yml @@ -49,15 +49,6 @@ - devstack - devstack:install -- name: add paver autocomplete to bashrc - lineinfile: - dest: /root/.bashrc - line: "source {{ edxapp_code_dir }}/scripts/paver_autocomplete.sh" - when: devstack is defined and devstack - tags: - - devstack - - devstack:install - - name: create edxapp log dir file: path: "{{ edxapp_log_dir }}" diff --git a/playbooks/roles/edxapp/tasks/service_variant_config.yml b/playbooks/roles/edxapp/tasks/service_variant_config.yml index 9bc6e411509..7ed54e904b6 100644 --- a/playbooks/roles/edxapp/tasks/service_variant_config.yml +++ b/playbooks/roles/edxapp/tasks/service_variant_config.yml @@ -312,8 +312,8 @@ - gather_static_assets - assets -# Gather assets using paver if possible -- name: "gather static assets with paver and pull translations" +# Build static assets if possible +- name: "gather static assets" command: "{{ COMMON_BIN_DIR }}/edxapp-update-assets" when: celery_worker is not defined and not devstack tags: diff --git a/playbooks/roles/edxapp/templates/edx/bin/edxapp-update-assets.j2 b/playbooks/roles/edxapp/templates/edx/bin/edxapp-update-assets.j2 index fe3dc8fc89d..516d399634d 100644 --- a/playbooks/roles/edxapp/templates/edx/bin/edxapp-update-assets.j2 +++ b/playbooks/roles/edxapp/templates/edx/bin/edxapp-update-assets.j2 @@ -4,10 +4,11 @@ {% for override in edxapp_staticfiles_storage_overrides %} sudo -E -H -u {{ edxapp_user }} \ env "PATH=$PATH" "STATICFILES_STORAGE={{ override }}" \ - {{ edxapp_venv_bin }}/paver update_assets --debug-collect --settings=$EDX_PLATFORM_SETTINGS + {{ edxapp_venv_bin }}/npm run build && {{ edxapp_venv_bin }}/python manage.py lms collectstatic --noinput --debug-collect --settings=$EDX_PLATFORM_SETTINGS && {{ edxapp_venv_bin }}/python manage.py cms collectstatic --noinput --debug-collect --settings=$EDX_PLATFORM_SETTINGS {% endfor %} {% else %} sudo -E -H -u {{ edxapp_user }} \ env "PATH=$PATH" \ - {{ edxapp_venv_bin }}/paver update_assets --debug-collect --settings $EDX_PLATFORM_SETTINGS + {{ edxapp_venv_bin }}/npm run build && {{ edxapp_venv_bin }}/python manage.py lms collectstatic --noinput --debug-collect --settings=$EDX_PLATFORM_SETTINGS && {{ edxapp_venv_bin }}/python manage.py cms collectstatic --noinput --debug-collect --settings=$EDX_PLATFORM_SETTINGS {% endif %} + \ No newline at end of file diff --git a/playbooks/roles/test_build_server/defaults/main.yml b/playbooks/roles/test_build_server/defaults/main.yml deleted file mode 100644 index 300843ef990..00000000000 --- a/playbooks/roles/test_build_server/defaults/main.yml +++ /dev/null @@ -1,19 +0,0 @@ ---- -# -# edX Configuration -# -# github: https://github.com/openedx/configuration -# wiki: https://openedx.atlassian.net/wiki/display/OpenOPS -# code style: https://openedx.atlassian.net/wiki/display/OpenOPS/Ansible+Code+Conventions -# license: https://github.com/openedx/configuration/blob/master/LICENSE.TXT -# -## -# Defaults for role test_build_server -# - -# -# vars are namespace with the module name. -# -test_build_server_user: jenkins -test_build_server_repo_path: /home/jenkins -TEST_EDX_PLATFORM_VERSION: master diff --git a/playbooks/roles/test_build_server/files/test-development-environment.sh b/playbooks/roles/test_build_server/files/test-development-environment.sh deleted file mode 100755 index 03b409e725c..00000000000 --- a/playbooks/roles/test_build_server/files/test-development-environment.sh +++ /dev/null @@ -1,56 +0,0 @@ -#!/usr/bin/env bash -set -e -################################################################################ -# This executes a small subset of the edx-platform tests. It is intended as -# a means of testing newly provisioned AMIs for our jenkins workers. -# -# The two main things that happen here: -# 1. The setup from edx-platform/scripts/all-tests.sh, the script that is -# run by the jenkins workers to kick off tests. -# 2. The paver command for tests, coverage and quality reports are run. -# For the tests, it runs only a small number of test cases for each -# test suite. -############################################################################### - -# Doing this rather than copying the file into the scripts folder so that -# this file doesn't get cleaned out by the 'git clean' in all-tests.sh. -cd edx-platform-clone - -# This will run all of the setup it usually runs, but none of the -# tests because TEST_SUITE isn't defined. -export PYTHON_VERSION=3.8 -source scripts/jenkins-common.sh - -case "$1" in - "unit") - - # Now we can run a subset of the tests via paver. - # Run some of the common/lib unit tests - paver test_lib -t common/lib/xmodule/xmodule/tests/test_stringify.py - - # Generate some coverage reports - # Since `TEST_SUITE` is not set, change the coverage file written by the - # previous test to a generic one. - cp reports/common_lib_xmodule.coverage reports/.coverage - paver coverage - - # Run some of the djangoapp unit tests - paver test_system -t lms/djangoapps/courseware/tests/tests.py - paver test_system -t cms/djangoapps/course_creators/tests/test_views.py - ;; - - "js") - - # Run some of the javascript unit tests - paver test_js_run -s lms-coffee - ;; - - "quality") - # Generate quality reports - paver run_quality - ;; - - *) - echo "args required" - exit 1 -esac diff --git a/playbooks/roles/test_build_server/meta/main.yml b/playbooks/roles/test_build_server/meta/main.yml deleted file mode 100644 index 39c023632c8..00000000000 --- a/playbooks/roles/test_build_server/meta/main.yml +++ /dev/null @@ -1,26 +0,0 @@ ---- -# -# edX Configuration -# -# github: https://github.com/openedx/configuration -# wiki: https://openedx.atlassian.net/wiki/display/OpenOPS -# code style: https://openedx.atlassian.net/wiki/display/OpenOPS/Ansible+Code+Conventions -# license: https://github.com/openedx/configuration/blob/master/LICENSE.TXT -# -## -# Role includes for role test_build_server -# -# Example: -# -# dependencies: -# - { -# role: my_role -# my_role_var0: "foo" -# my_role_var1: "bar" -# } - -#### INTENTIONALLY LEFT BLANK #### - -# Since this is a test role, it should not install anything extra onto the -# target machine, thus altering the system under test. Be careful when -# adding dependencies. diff --git a/playbooks/roles/test_build_server/tasks/main.yml b/playbooks/roles/test_build_server/tasks/main.yml deleted file mode 100644 index d2a93b8aeea..00000000000 --- a/playbooks/roles/test_build_server/tasks/main.yml +++ /dev/null @@ -1,48 +0,0 @@ ---- -# -# edX Configuration -# -# github: https://github.com/openedx/configuration -# wiki: https://openedx.atlassian.net/wiki/display/OpenOPS -# code style: https://openedx.atlassian.net/wiki/display/OpenOPS/Ansible+Code+Conventions -# license: https://github.com/openedx/configuration/blob/master/LICENSE.TXT -# -# -# -# Tasks for role test_build_server -# -# Overview: -# -# -# Dependencies: -# -# -# Example play: -# - -- name: Create clone of edx-platform - git: - repo: "https://github.com/openedx/edx-platform.git" - dest: "{{ test_build_server_repo_path }}/edx-platform-clone" - version: "{{ TEST_EDX_PLATFORM_VERSION }}" - become_user: "{{ test_build_server_user }}" - -- name: get xargs limit - shell: "xargs --show-limits" - -- name: Copy test-development-environment.sh to somewhere the jenkins user can access it - copy: - src: test-development-environment.sh - dest: "{{ test_build_server_repo_path }}" - mode: 0755 - -- name: Validate build environment - shell: "bash test-development-environment.sh {{ item }}" - args: - chdir: "{{ test_build_server_repo_path }}/" - environment: - PYTHON_VERSION: "3.8" - become_user: "{{ test_build_server_user }}" - with_items: - - "unit" - - "js" diff --git a/util/jenkins/app-container-provisioner.sh b/util/jenkins/app-container-provisioner.sh index 1542b360d53..92dda0c8448 100644 --- a/util/jenkins/app-container-provisioner.sh +++ b/util/jenkins/app-container-provisioner.sh @@ -123,7 +123,7 @@ fi if [[ ${app_service_name} == 'lms' ]]; then # temporary hack, create npm-install.log file touch /edx/app/edxapp/edx-platform/test_root/log/npm-install.log - docker run --network=host --rm -u='root' -e NO_PREREQ_INSTALL="1" -e SKIP_WS_MIGRATIONS="1" -e LMS_CFG=/edx/etc/${app_service_name}.yml -e CMS_CFG=/edx/etc/cms.yml -e DJANGO_SETTINGS_MODULE=${app_service_name}.envs.docker-production -e SERVICE_VARIANT=${app_service_name} -e EDX_PLATFORM_SETTINGS=docker-production -v /edx/etc/${app_service_name}.yml:/edx/etc/${app_service_name}.yml -v /var/tmp/cms.yml:/edx/etc/cms.yml -v /edx/var/edx-themes:/edx/var/edx-themes -v /edx/var/${app_name}:/edx/var/${app_name} -v /edx/app/edxapp/edx-platform/test_root/log/npm-install.log:/edx/app/edxapp/edx-platform/test_root/log/npm-install.log -v /var/run/mysqld/mysqld.sock:/var/run/mysqld/mysqld.sock ${app_repo}:latest paver update_assets --debug-collect --settings=docker-production + docker run --network=host --rm -u='root' -e NO_PREREQ_INSTALL="1" -e SKIP_WS_MIGRATIONS="1" -e LMS_CFG=/edx/etc/${app_service_name}.yml -e CMS_CFG=/edx/etc/cms.yml -e DJANGO_SETTINGS_MODULE=${app_service_name}.envs.docker-production -e SERVICE_VARIANT=${app_service_name} -e EDX_PLATFORM_SETTINGS=docker-production -e STATIC_ROOT_LMS=/edx/var/edxapp/staticfiles -e STATIC_ROOT_CMS=/edx/var/edxapp/staticfiles/studio -v /edx/etc/${app_service_name}.yml:/edx/etc/${app_service_name}.yml -v /var/tmp/cms.yml:/edx/etc/cms.yml -v /edx/var/edx-themes:/edx/var/edx-themes -v /edx/var/${app_name}:/edx/var/${app_name} -v /edx/app/edxapp/edx-platform/test_root/log/npm-install.log:/edx/app/edxapp/edx-platform/test_root/log/npm-install.log -v /var/run/mysqld/mysqld.sock:/var/run/mysqld/mysqld.sock ${app_repo}:latest npm run build && ./manage.py lms collectstatic --noinput --debug-collect --settings=docker-production && ./manage.py cms collectstatic --noinput --debug-collect --settings=docker-production fi # Generate docker-compose file for app service