├── .github └── workflows │ ├── auto-author-assign.yml │ └── ci.yml ├── .gitignore ├── .htaccess ├── README.md ├── check_upgrade_savepoints ├── check_upgrade_savepoints.php ├── check_upgrade_savepoints.sh └── savepoints2checkstyle.php ├── compare_databases ├── compare_databases.php ├── compare_databases.sh └── run_conditionally.sh ├── composer.json ├── define_excluded └── define_excluded.sh ├── detect_conflicts └── detect_conflicts.sh ├── diff_extract_changes └── diff_extract_changes.php ├── generate_component_ant_files └── generate_component_ant_files.php ├── git_garbage_collector └── git_garbage_collector.sh ├── git_sync_two_branches ├── git_sync_two_branches.sh └── lib.sh ├── groovyscripts ├── add_notification_webhook_to_all_jobs.groovy └── remove_post_action_from_all_jobs.groovy ├── grunt_process └── grunt_process.sh ├── illegal_whitespace └── illegal_whitespace.sh ├── index.html ├── jenkins_cli └── jenkins-cli.jar ├── jira.sh ├── lang └── en │ └── local_ci.php ├── list_changed_files └── list_changed_files.sh ├── list_valid_components ├── list_valid_components.php └── list_valid_components.sh ├── mustache_lint ├── js_helper.php ├── mustache_lint.php ├── mustache_lint.sh ├── running_validator.txt └── simple_core_component_mustache_loader.php ├── package.json ├── php_lint └── php_lint.sh ├── phplib └── clilib.php ├── prepare_composer_stuff └── prepare_composer_stuff.sh ├── prepare_npm_stuff └── prepare_npm_stuff.sh ├── project_size_report └── project_size_report.sh ├── rebase_security └── rebase_security.sh ├── remote_branch_checker ├── checkstyle_converter.php ├── lib.php ├── remote_branch_checker.sh ├── remote_branch_reporter.php └── xslt │ ├── checkstyle2smurf.xsl │ └── gargamel.xsl ├── run_phpunittests ├── config.php.template └── run_phpunittests.sh ├── tests ├── check_upgrade_savepoints.bats ├── checkstyle_manipulations.bats ├── compare_databases.bats ├── continuous_manage_queues_validation.bats ├── define_excluded.bats ├── detect_conflicts.bats ├── diff_extract_changes.bats ├── fixtures │ ├── 31-merge-conflict.patch │ ├── 31-mustache_lint-full-html-body.patch │ ├── 31-mustache_lint-html-validator-fail.patch │ ├── 31-mustache_lint-invalid-json.patch │ ├── 31-mustache_lint-js_test.patch │ ├── 31-mustache_lint-js_token_test.patch │ ├── 31-mustache_lint-mustache-syntax-error.patch │ ├── 31-mustache_lint-no-content.patch │ ├── 31-mustache_lint-no-example.patch │ ├── 31-mustache_lint-ok.patch │ ├── 31-mustache_lint-partials-loaded.patch │ ├── 31-mustache_lint-quote_and_uniq.patch │ ├── 31-mustache_lint-theme_loading.patch │ ├── 31-thirdparty-edgecase.patch │ ├── 31-thirdparty-error.patch │ ├── 31-thirdparty-ok.patch │ ├── 31-valid_components.txt │ ├── 31-whitespace-error.patch │ ├── 31-whitespace-upgradenotes.patch │ ├── 311-upgrade_external_backup-all-ok-plugin.patch │ ├── 311-upgrade_external_backup-all-ok-root.patch │ ├── 311-upgrade_external_backup-all-wrong.patch │ ├── 311-upgrade_external_backup-backup-ok.patch │ ├── 311-upgrade_external_backup-external-ok.patch │ ├── 311-upgrade_external_backup-no-changes.patch │ ├── 35-thirdparty-lib-added.patch │ ├── 39-grunt-js-unbuilt.patch │ ├── 39-grunt-scss-unbuilt.patch │ ├── 39-mustache_lint_plugins-ignores.patch │ ├── 39-mustache_lint_plugins-templates.patch │ ├── 402-mustache_lint-str.patch │ ├── 402-php_lint-bad.patch │ ├── 402-php_lint-ok.patch │ ├── 402-php_lint-vendor.patch │ ├── check_upgrade_savepoints │ │ ├── blank_upgrade_file.patch │ │ ├── if_without_savepoint.patch │ │ ├── multiple_return.patch │ │ ├── no_return_statement.patch │ │ ├── out_of_order.patch │ │ ├── repeated_savepoint.patch │ │ ├── returning_bool.patch │ │ ├── too_high_savepoint.patch │ │ └── wrong_savepoint_version.patch │ ├── checkstyle │ │ ├── commits-info.txt │ │ ├── commits-info.xml │ │ ├── commits.txt │ │ ├── commits.xml │ │ ├── gherkinlint_err.txt │ │ ├── gherkinlint_err.xml │ │ ├── gherkinlint_ok.txt │ │ ├── gherkinlint_ok.xml │ │ ├── grunt-build-failed.txt │ │ ├── grunt-build-failed.xml │ │ ├── grunt-errors.txt │ │ ├── grunt.txt │ │ ├── grunt.xml │ │ ├── mustachelint.txt │ │ ├── mustachelint.xml │ │ ├── phplint.txt │ │ ├── phplint.xml │ │ ├── savepoints.txt │ │ ├── savepoints.xml │ │ ├── shifter.xml │ │ ├── thirdparty.txt │ │ └── thirdparty.xml │ ├── compare_databases_wrong.patch │ ├── define_excluded │ │ ├── format-excluded-expected.txt │ │ ├── format-excluded_comma-expected.txt │ │ ├── format-excluded_comma_wildchars-expected.txt │ │ ├── format-excluded_grep-expected.txt │ │ ├── format-excluded_list-expected.txt │ │ └── format-excluded_list_wildchars-expected.txt │ ├── diff_extract_changes │ │ ├── diff_extract_changes-edge-expected.txt │ │ ├── diff_extract_changes-edge-expected.xml │ │ ├── diff_extract_changes-edge-input.patch │ │ ├── diff_extract_changes-normal-expected.txt │ │ ├── diff_extract_changes-normal-expected.xml │ │ └── diff_extract_changes-normal-input.patch │ ├── remote_branch_checker │ │ ├── local_ci_fixture_all_passing.xml │ │ ├── local_ci_fixture_bad_amos_command.regex │ │ ├── local_ci_fixture_gherkin_lint.regex │ │ ├── local_ci_fixture_good_amos_commit.regex │ │ ├── local_ci_fixture_grunt_build_failed.regex │ │ ├── local_ci_fixture_manyproblems_38.regex │ │ ├── local_ci_fixture_mustache_lint.regex │ │ ├── local_ci_fixture_mustache_lint_js.regex │ │ ├── local_ci_fixture_noncode_update.xml │ │ ├── local_ci_fixture_oldbranch_38.regex │ │ ├── local_ci_fixture_phpcs_aware_components.regex │ │ ├── local_ci_fixture_stylelint.regex │ │ ├── local_ci_fixture_thirdparty_css.regex │ │ ├── local_ci_fixture_upgrade_external_backup.regex │ │ ├── local_ci_fixture_upgrade_external_backup_skipped_for_plugins.regex │ │ ├── local_ci_fixture_upgrade_txt_for_404.regex │ │ └── local_ci_fixture_upgrade_txt_for_405.regex │ ├── remote_branch_reporter │ │ ├── MDL-54987 │ │ │ ├── commits.xml │ │ │ ├── cs.xml │ │ │ ├── csslint.out │ │ │ ├── docs.xml │ │ │ ├── errors.txt │ │ │ ├── errors.xml │ │ │ ├── eslint.xml │ │ │ ├── grunt.xml │ │ │ ├── patchset.xml │ │ │ ├── phplint.xml │ │ │ ├── savepoints.xml │ │ │ ├── shifter.xml │ │ │ ├── smurf.html │ │ │ ├── smurf.xml │ │ │ ├── stylelint.xml │ │ │ └── thirdparty.xml │ │ ├── MDL-55322 │ │ │ ├── commits.xml │ │ │ ├── cs.xml │ │ │ ├── csslint.out │ │ │ ├── docs.xml │ │ │ ├── eslint.xml │ │ │ ├── grunt.xml │ │ │ ├── patchset.xml │ │ │ ├── phplint.xml │ │ │ ├── savepoints.xml │ │ │ ├── shifter.xml │ │ │ ├── smurf.html │ │ │ ├── smurf.xml │ │ │ ├── stylelint.xml │ │ │ └── thirdparty.xml │ │ └── README.md │ ├── verify_commit_messages │ │ ├── amos-bad-syntax.patch │ │ ├── amos-good-commands.patch │ │ ├── amos-incomplete.patch │ │ ├── amos-no-modified-files.patch │ │ ├── backslash-ended-lines.patch │ │ ├── includes-parent-in-message.patch │ │ ├── no-code-area.patch │ │ ├── no-colon.patch │ │ ├── no-issue-id.patch │ │ ├── ok.patch │ │ ├── too-long-body.patch │ │ ├── too-long.patch │ │ └── warning-elsewhere.patch │ ├── verify_phpunit_xml │ │ ├── add_uncovered_test.patch │ │ └── multiple_classes_in_file.patch │ └── versions_check_set │ │ ├── extra_version_digit.patch │ │ ├── invalid_component.patch │ │ ├── invalid_date.patch │ │ ├── main_version_missing.patch │ │ ├── no_moodle_internal.patch │ │ ├── no_version_defined.patch │ │ ├── short_array_syntax.patch │ │ ├── short_version.patch │ │ └── version_too_far_in_future.patch ├── git_sync_two_branches.bats ├── grunt_process.bats ├── illegal_whitespace.bats ├── libs │ ├── bats-assert │ │ ├── load.bash │ │ └── src │ │ │ └── assert.bash │ ├── bats-support │ │ ├── load.bash │ │ └── src │ │ │ ├── error.bash │ │ │ └── output.bash │ └── shared_setup.bash ├── list_valid_components.bats ├── mustache_lint.bats ├── mustache_lint_plugins.bats ├── php_lint.bats ├── prepare_npm_stuff.bats ├── remote_branch_checker.bats ├── remote_branch_reporter.bats ├── setup.bats ├── thirdparty_check.bats ├── travis-branch-checker.bats ├── upgrade_external_backup.bats ├── verifications.bats ├── verify_commit_messages.bats ├── verify_phpunit_xml.bats └── versions_check_set.bats ├── thirdparty_check ├── thirdparty_check.sh └── thirdpartylocations.php ├── tracker_automations ├── bulk_precheck_issues │ ├── bulk_precheck_issues.sh │ ├── criteria │ │ ├── awaiting_integration │ │ │ ├── override-defaults.sh │ │ │ ├── postissue.sh │ │ │ └── query.sh │ │ ├── awaiting_peer_review │ │ │ ├── postissue.sh │ │ │ └── query.sh │ │ └── developer_request │ │ │ ├── postissue.sh │ │ │ └── query.sh │ └── util.sh ├── bulk_prelaunch_jobs │ ├── bulk_prelaunch_jobs.sh │ └── criteria │ │ ├── awaiting_component_lead_review │ │ ├── jobs.sh │ │ ├── postissue.sh │ │ └── query.sh │ │ ├── awaiting_integration │ │ ├── jobs.sh │ │ ├── postissue.sh │ │ └── query.sh │ │ ├── list_of_mdls │ │ ├── jobs.sh │ │ ├── postissue.sh │ │ └── query.sh │ │ ├── list_of_mdls_sdev │ │ ├── jobs.sh │ │ ├── postissue.sh │ │ └── query.sh │ │ └── multi_database │ │ ├── jobs.sh │ │ ├── postissue.sh │ │ └── query.sh ├── check_marked_as_integrated │ ├── check_marked_as_integrated.sh │ └── util.sh ├── close_tested_issues │ └── close_tested_issues.sh ├── component_leads_integration_mover │ ├── component_leads_integration_mover.sh │ └── lib.sh ├── continuous_manage_queues │ ├── continuous_manage_queues.sh │ └── lib.sh ├── count_delayed_last_cycle │ └── count_delayed_last_cycle.sh ├── count_reopened_last_cycle │ └── count_reopened_last_cycle.sh ├── count_test_failed_last_cycle │ └── count_test_failed_last_cycle.sh ├── delay_awaiting_issues │ └── delay_awaiting_issues.sh ├── manage_waiting_for_feedback │ └── manage_waiting_for_feedback.sh ├── move_to_current_integration │ └── move_to_current_integration.sh ├── mv_reopened_out_from_current │ └── mv_reopened_out_from_current.sh ├── normal_manage_queues │ ├── lib.sh │ └── normal_manage_queues.sh ├── progress_automated_tested │ └── progress_automated_tested.sh ├── remove_ci_label_from_waiting_integration │ └── remove_ci_label_from_waiting_integration.sh ├── remove_ci_label_from_wip │ └── remove_ci_label_from_wip.sh ├── send_rebase_message │ └── send_rebase_message.sh ├── set_integration_priority_to_one │ └── set_integration_priority_to_one.sh └── set_integration_priority_to_zero │ └── set_integration_priority_to_zero.sh ├── tracker_content_gadget ├── clr_candidate_picker.html ├── clr_candidate_picker_split.html ├── personal_candidate_picker.html └── personal_current_picker.html ├── travis └── check_branch_status.php ├── upgrade_external_backup_check └── upgrade_external_backup_check.sh ├── verify_commit_messages ├── amoslib.php ├── check_amos.php ├── commits2checkstyle.php └── verify_commit_messages.sh ├── verify_phpunit_xml ├── create_phpunit_xml.php └── verify_phpunit_xml.sh ├── version.php └── versions_check_set └── versions_check_set.sh /.github/workflows/auto-author-assign.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/.github/workflows/auto-author-assign.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/.gitignore -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- 1 | Deny from all 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/README.md -------------------------------------------------------------------------------- /check_upgrade_savepoints/check_upgrade_savepoints.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/check_upgrade_savepoints/check_upgrade_savepoints.php -------------------------------------------------------------------------------- /check_upgrade_savepoints/check_upgrade_savepoints.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/check_upgrade_savepoints/check_upgrade_savepoints.sh -------------------------------------------------------------------------------- /check_upgrade_savepoints/savepoints2checkstyle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/check_upgrade_savepoints/savepoints2checkstyle.php -------------------------------------------------------------------------------- /compare_databases/compare_databases.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/compare_databases/compare_databases.php -------------------------------------------------------------------------------- /compare_databases/compare_databases.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/compare_databases/compare_databases.sh -------------------------------------------------------------------------------- /compare_databases/run_conditionally.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/compare_databases/run_conditionally.sh -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/composer.json -------------------------------------------------------------------------------- /define_excluded/define_excluded.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/define_excluded/define_excluded.sh -------------------------------------------------------------------------------- /detect_conflicts/detect_conflicts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/detect_conflicts/detect_conflicts.sh -------------------------------------------------------------------------------- /diff_extract_changes/diff_extract_changes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/diff_extract_changes/diff_extract_changes.php -------------------------------------------------------------------------------- /generate_component_ant_files/generate_component_ant_files.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/generate_component_ant_files/generate_component_ant_files.php -------------------------------------------------------------------------------- /git_garbage_collector/git_garbage_collector.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/git_garbage_collector/git_garbage_collector.sh -------------------------------------------------------------------------------- /git_sync_two_branches/git_sync_two_branches.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/git_sync_two_branches/git_sync_two_branches.sh -------------------------------------------------------------------------------- /git_sync_two_branches/lib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/git_sync_two_branches/lib.sh -------------------------------------------------------------------------------- /groovyscripts/add_notification_webhook_to_all_jobs.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/groovyscripts/add_notification_webhook_to_all_jobs.groovy -------------------------------------------------------------------------------- /groovyscripts/remove_post_action_from_all_jobs.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/groovyscripts/remove_post_action_from_all_jobs.groovy -------------------------------------------------------------------------------- /grunt_process/grunt_process.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/grunt_process/grunt_process.sh -------------------------------------------------------------------------------- /illegal_whitespace/illegal_whitespace.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/illegal_whitespace/illegal_whitespace.sh -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jenkins_cli/jenkins-cli.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/jenkins_cli/jenkins-cli.jar -------------------------------------------------------------------------------- /jira.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/jira.sh -------------------------------------------------------------------------------- /lang/en/local_ci.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/lang/en/local_ci.php -------------------------------------------------------------------------------- /list_changed_files/list_changed_files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/list_changed_files/list_changed_files.sh -------------------------------------------------------------------------------- /list_valid_components/list_valid_components.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/list_valid_components/list_valid_components.php -------------------------------------------------------------------------------- /list_valid_components/list_valid_components.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/list_valid_components/list_valid_components.sh -------------------------------------------------------------------------------- /mustache_lint/js_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/mustache_lint/js_helper.php -------------------------------------------------------------------------------- /mustache_lint/mustache_lint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/mustache_lint/mustache_lint.php -------------------------------------------------------------------------------- /mustache_lint/mustache_lint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/mustache_lint/mustache_lint.sh -------------------------------------------------------------------------------- /mustache_lint/running_validator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/mustache_lint/running_validator.txt -------------------------------------------------------------------------------- /mustache_lint/simple_core_component_mustache_loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/mustache_lint/simple_core_component_mustache_loader.php -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/package.json -------------------------------------------------------------------------------- /php_lint/php_lint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/php_lint/php_lint.sh -------------------------------------------------------------------------------- /phplib/clilib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/phplib/clilib.php -------------------------------------------------------------------------------- /prepare_composer_stuff/prepare_composer_stuff.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/prepare_composer_stuff/prepare_composer_stuff.sh -------------------------------------------------------------------------------- /prepare_npm_stuff/prepare_npm_stuff.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/prepare_npm_stuff/prepare_npm_stuff.sh -------------------------------------------------------------------------------- /project_size_report/project_size_report.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/project_size_report/project_size_report.sh -------------------------------------------------------------------------------- /rebase_security/rebase_security.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/rebase_security/rebase_security.sh -------------------------------------------------------------------------------- /remote_branch_checker/checkstyle_converter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/remote_branch_checker/checkstyle_converter.php -------------------------------------------------------------------------------- /remote_branch_checker/lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/remote_branch_checker/lib.php -------------------------------------------------------------------------------- /remote_branch_checker/remote_branch_checker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/remote_branch_checker/remote_branch_checker.sh -------------------------------------------------------------------------------- /remote_branch_checker/remote_branch_reporter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/remote_branch_checker/remote_branch_reporter.php -------------------------------------------------------------------------------- /remote_branch_checker/xslt/checkstyle2smurf.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/remote_branch_checker/xslt/checkstyle2smurf.xsl -------------------------------------------------------------------------------- /remote_branch_checker/xslt/gargamel.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/remote_branch_checker/xslt/gargamel.xsl -------------------------------------------------------------------------------- /run_phpunittests/config.php.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/run_phpunittests/config.php.template -------------------------------------------------------------------------------- /run_phpunittests/run_phpunittests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/run_phpunittests/run_phpunittests.sh -------------------------------------------------------------------------------- /tests/check_upgrade_savepoints.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/check_upgrade_savepoints.bats -------------------------------------------------------------------------------- /tests/checkstyle_manipulations.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/checkstyle_manipulations.bats -------------------------------------------------------------------------------- /tests/compare_databases.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/compare_databases.bats -------------------------------------------------------------------------------- /tests/continuous_manage_queues_validation.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/continuous_manage_queues_validation.bats -------------------------------------------------------------------------------- /tests/define_excluded.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/define_excluded.bats -------------------------------------------------------------------------------- /tests/detect_conflicts.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/detect_conflicts.bats -------------------------------------------------------------------------------- /tests/diff_extract_changes.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/diff_extract_changes.bats -------------------------------------------------------------------------------- /tests/fixtures/31-merge-conflict.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/31-merge-conflict.patch -------------------------------------------------------------------------------- /tests/fixtures/31-mustache_lint-full-html-body.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/31-mustache_lint-full-html-body.patch -------------------------------------------------------------------------------- /tests/fixtures/31-mustache_lint-html-validator-fail.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/31-mustache_lint-html-validator-fail.patch -------------------------------------------------------------------------------- /tests/fixtures/31-mustache_lint-invalid-json.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/31-mustache_lint-invalid-json.patch -------------------------------------------------------------------------------- /tests/fixtures/31-mustache_lint-js_test.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/31-mustache_lint-js_test.patch -------------------------------------------------------------------------------- /tests/fixtures/31-mustache_lint-js_token_test.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/31-mustache_lint-js_token_test.patch -------------------------------------------------------------------------------- /tests/fixtures/31-mustache_lint-mustache-syntax-error.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/31-mustache_lint-mustache-syntax-error.patch -------------------------------------------------------------------------------- /tests/fixtures/31-mustache_lint-no-content.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/31-mustache_lint-no-content.patch -------------------------------------------------------------------------------- /tests/fixtures/31-mustache_lint-no-example.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/31-mustache_lint-no-example.patch -------------------------------------------------------------------------------- /tests/fixtures/31-mustache_lint-ok.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/31-mustache_lint-ok.patch -------------------------------------------------------------------------------- /tests/fixtures/31-mustache_lint-partials-loaded.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/31-mustache_lint-partials-loaded.patch -------------------------------------------------------------------------------- /tests/fixtures/31-mustache_lint-quote_and_uniq.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/31-mustache_lint-quote_and_uniq.patch -------------------------------------------------------------------------------- /tests/fixtures/31-mustache_lint-theme_loading.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/31-mustache_lint-theme_loading.patch -------------------------------------------------------------------------------- /tests/fixtures/31-thirdparty-edgecase.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/31-thirdparty-edgecase.patch -------------------------------------------------------------------------------- /tests/fixtures/31-thirdparty-error.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/31-thirdparty-error.patch -------------------------------------------------------------------------------- /tests/fixtures/31-thirdparty-ok.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/31-thirdparty-ok.patch -------------------------------------------------------------------------------- /tests/fixtures/31-valid_components.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/31-valid_components.txt -------------------------------------------------------------------------------- /tests/fixtures/31-whitespace-error.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/31-whitespace-error.patch -------------------------------------------------------------------------------- /tests/fixtures/31-whitespace-upgradenotes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/31-whitespace-upgradenotes.patch -------------------------------------------------------------------------------- /tests/fixtures/311-upgrade_external_backup-all-ok-plugin.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/311-upgrade_external_backup-all-ok-plugin.patch -------------------------------------------------------------------------------- /tests/fixtures/311-upgrade_external_backup-all-ok-root.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/311-upgrade_external_backup-all-ok-root.patch -------------------------------------------------------------------------------- /tests/fixtures/311-upgrade_external_backup-all-wrong.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/311-upgrade_external_backup-all-wrong.patch -------------------------------------------------------------------------------- /tests/fixtures/311-upgrade_external_backup-backup-ok.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/311-upgrade_external_backup-backup-ok.patch -------------------------------------------------------------------------------- /tests/fixtures/311-upgrade_external_backup-external-ok.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/311-upgrade_external_backup-external-ok.patch -------------------------------------------------------------------------------- /tests/fixtures/311-upgrade_external_backup-no-changes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/311-upgrade_external_backup-no-changes.patch -------------------------------------------------------------------------------- /tests/fixtures/35-thirdparty-lib-added.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/35-thirdparty-lib-added.patch -------------------------------------------------------------------------------- /tests/fixtures/39-grunt-js-unbuilt.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/39-grunt-js-unbuilt.patch -------------------------------------------------------------------------------- /tests/fixtures/39-grunt-scss-unbuilt.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/39-grunt-scss-unbuilt.patch -------------------------------------------------------------------------------- /tests/fixtures/39-mustache_lint_plugins-ignores.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/39-mustache_lint_plugins-ignores.patch -------------------------------------------------------------------------------- /tests/fixtures/39-mustache_lint_plugins-templates.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/39-mustache_lint_plugins-templates.patch -------------------------------------------------------------------------------- /tests/fixtures/402-mustache_lint-str.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/402-mustache_lint-str.patch -------------------------------------------------------------------------------- /tests/fixtures/402-php_lint-bad.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/402-php_lint-bad.patch -------------------------------------------------------------------------------- /tests/fixtures/402-php_lint-ok.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/402-php_lint-ok.patch -------------------------------------------------------------------------------- /tests/fixtures/402-php_lint-vendor.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/402-php_lint-vendor.patch -------------------------------------------------------------------------------- /tests/fixtures/check_upgrade_savepoints/blank_upgrade_file.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/check_upgrade_savepoints/blank_upgrade_file.patch -------------------------------------------------------------------------------- /tests/fixtures/check_upgrade_savepoints/if_without_savepoint.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/check_upgrade_savepoints/if_without_savepoint.patch -------------------------------------------------------------------------------- /tests/fixtures/check_upgrade_savepoints/multiple_return.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/check_upgrade_savepoints/multiple_return.patch -------------------------------------------------------------------------------- /tests/fixtures/check_upgrade_savepoints/no_return_statement.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/check_upgrade_savepoints/no_return_statement.patch -------------------------------------------------------------------------------- /tests/fixtures/check_upgrade_savepoints/out_of_order.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/check_upgrade_savepoints/out_of_order.patch -------------------------------------------------------------------------------- /tests/fixtures/check_upgrade_savepoints/repeated_savepoint.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/check_upgrade_savepoints/repeated_savepoint.patch -------------------------------------------------------------------------------- /tests/fixtures/check_upgrade_savepoints/returning_bool.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/check_upgrade_savepoints/returning_bool.patch -------------------------------------------------------------------------------- /tests/fixtures/check_upgrade_savepoints/too_high_savepoint.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/check_upgrade_savepoints/too_high_savepoint.patch -------------------------------------------------------------------------------- /tests/fixtures/check_upgrade_savepoints/wrong_savepoint_version.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/check_upgrade_savepoints/wrong_savepoint_version.patch -------------------------------------------------------------------------------- /tests/fixtures/checkstyle/commits-info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/checkstyle/commits-info.txt -------------------------------------------------------------------------------- /tests/fixtures/checkstyle/commits-info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/checkstyle/commits-info.xml -------------------------------------------------------------------------------- /tests/fixtures/checkstyle/commits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/checkstyle/commits.txt -------------------------------------------------------------------------------- /tests/fixtures/checkstyle/commits.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/checkstyle/commits.xml -------------------------------------------------------------------------------- /tests/fixtures/checkstyle/gherkinlint_err.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/checkstyle/gherkinlint_err.txt -------------------------------------------------------------------------------- /tests/fixtures/checkstyle/gherkinlint_err.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/checkstyle/gherkinlint_err.xml -------------------------------------------------------------------------------- /tests/fixtures/checkstyle/gherkinlint_ok.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/checkstyle/gherkinlint_ok.txt -------------------------------------------------------------------------------- /tests/fixtures/checkstyle/gherkinlint_ok.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/checkstyle/gherkinlint_ok.xml -------------------------------------------------------------------------------- /tests/fixtures/checkstyle/grunt-build-failed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/checkstyle/grunt-build-failed.txt -------------------------------------------------------------------------------- /tests/fixtures/checkstyle/grunt-build-failed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/checkstyle/grunt-build-failed.xml -------------------------------------------------------------------------------- /tests/fixtures/checkstyle/grunt-errors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/checkstyle/grunt-errors.txt -------------------------------------------------------------------------------- /tests/fixtures/checkstyle/grunt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/checkstyle/grunt.txt -------------------------------------------------------------------------------- /tests/fixtures/checkstyle/grunt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/checkstyle/grunt.xml -------------------------------------------------------------------------------- /tests/fixtures/checkstyle/mustachelint.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/checkstyle/mustachelint.txt -------------------------------------------------------------------------------- /tests/fixtures/checkstyle/mustachelint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/checkstyle/mustachelint.xml -------------------------------------------------------------------------------- /tests/fixtures/checkstyle/phplint.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/checkstyle/phplint.txt -------------------------------------------------------------------------------- /tests/fixtures/checkstyle/phplint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/checkstyle/phplint.xml -------------------------------------------------------------------------------- /tests/fixtures/checkstyle/savepoints.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/checkstyle/savepoints.txt -------------------------------------------------------------------------------- /tests/fixtures/checkstyle/savepoints.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/checkstyle/savepoints.xml -------------------------------------------------------------------------------- /tests/fixtures/checkstyle/shifter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/checkstyle/shifter.xml -------------------------------------------------------------------------------- /tests/fixtures/checkstyle/thirdparty.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/checkstyle/thirdparty.txt -------------------------------------------------------------------------------- /tests/fixtures/checkstyle/thirdparty.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/checkstyle/thirdparty.xml -------------------------------------------------------------------------------- /tests/fixtures/compare_databases_wrong.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/compare_databases_wrong.patch -------------------------------------------------------------------------------- /tests/fixtures/define_excluded/format-excluded-expected.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/define_excluded/format-excluded-expected.txt -------------------------------------------------------------------------------- /tests/fixtures/define_excluded/format-excluded_comma-expected.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/define_excluded/format-excluded_comma-expected.txt -------------------------------------------------------------------------------- /tests/fixtures/define_excluded/format-excluded_comma_wildchars-expected.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/define_excluded/format-excluded_comma_wildchars-expected.txt -------------------------------------------------------------------------------- /tests/fixtures/define_excluded/format-excluded_grep-expected.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/define_excluded/format-excluded_grep-expected.txt -------------------------------------------------------------------------------- /tests/fixtures/define_excluded/format-excluded_list-expected.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/define_excluded/format-excluded_list-expected.txt -------------------------------------------------------------------------------- /tests/fixtures/define_excluded/format-excluded_list_wildchars-expected.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/define_excluded/format-excluded_list_wildchars-expected.txt -------------------------------------------------------------------------------- /tests/fixtures/diff_extract_changes/diff_extract_changes-edge-expected.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/diff_extract_changes/diff_extract_changes-edge-expected.txt -------------------------------------------------------------------------------- /tests/fixtures/diff_extract_changes/diff_extract_changes-edge-expected.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/diff_extract_changes/diff_extract_changes-edge-expected.xml -------------------------------------------------------------------------------- /tests/fixtures/diff_extract_changes/diff_extract_changes-edge-input.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/diff_extract_changes/diff_extract_changes-edge-input.patch -------------------------------------------------------------------------------- /tests/fixtures/diff_extract_changes/diff_extract_changes-normal-expected.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/diff_extract_changes/diff_extract_changes-normal-expected.txt -------------------------------------------------------------------------------- /tests/fixtures/diff_extract_changes/diff_extract_changes-normal-expected.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/diff_extract_changes/diff_extract_changes-normal-expected.xml -------------------------------------------------------------------------------- /tests/fixtures/diff_extract_changes/diff_extract_changes-normal-input.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/diff_extract_changes/diff_extract_changes-normal-input.patch -------------------------------------------------------------------------------- /tests/fixtures/remote_branch_checker/local_ci_fixture_all_passing.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/remote_branch_checker/local_ci_fixture_all_passing.xml -------------------------------------------------------------------------------- /tests/fixtures/remote_branch_checker/local_ci_fixture_bad_amos_command.regex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/remote_branch_checker/local_ci_fixture_bad_amos_command.regex -------------------------------------------------------------------------------- /tests/fixtures/remote_branch_checker/local_ci_fixture_gherkin_lint.regex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/remote_branch_checker/local_ci_fixture_gherkin_lint.regex -------------------------------------------------------------------------------- /tests/fixtures/remote_branch_checker/local_ci_fixture_good_amos_commit.regex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/remote_branch_checker/local_ci_fixture_good_amos_commit.regex -------------------------------------------------------------------------------- /tests/fixtures/remote_branch_checker/local_ci_fixture_grunt_build_failed.regex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/remote_branch_checker/local_ci_fixture_grunt_build_failed.regex -------------------------------------------------------------------------------- /tests/fixtures/remote_branch_checker/local_ci_fixture_manyproblems_38.regex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/remote_branch_checker/local_ci_fixture_manyproblems_38.regex -------------------------------------------------------------------------------- /tests/fixtures/remote_branch_checker/local_ci_fixture_mustache_lint.regex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/remote_branch_checker/local_ci_fixture_mustache_lint.regex -------------------------------------------------------------------------------- /tests/fixtures/remote_branch_checker/local_ci_fixture_mustache_lint_js.regex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/remote_branch_checker/local_ci_fixture_mustache_lint_js.regex -------------------------------------------------------------------------------- /tests/fixtures/remote_branch_checker/local_ci_fixture_noncode_update.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/remote_branch_checker/local_ci_fixture_noncode_update.xml -------------------------------------------------------------------------------- /tests/fixtures/remote_branch_checker/local_ci_fixture_oldbranch_38.regex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/remote_branch_checker/local_ci_fixture_oldbranch_38.regex -------------------------------------------------------------------------------- /tests/fixtures/remote_branch_checker/local_ci_fixture_phpcs_aware_components.regex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/remote_branch_checker/local_ci_fixture_phpcs_aware_components.regex -------------------------------------------------------------------------------- /tests/fixtures/remote_branch_checker/local_ci_fixture_stylelint.regex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/remote_branch_checker/local_ci_fixture_stylelint.regex -------------------------------------------------------------------------------- /tests/fixtures/remote_branch_checker/local_ci_fixture_thirdparty_css.regex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/remote_branch_checker/local_ci_fixture_thirdparty_css.regex -------------------------------------------------------------------------------- /tests/fixtures/remote_branch_checker/local_ci_fixture_upgrade_external_backup.regex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/remote_branch_checker/local_ci_fixture_upgrade_external_backup.regex -------------------------------------------------------------------------------- /tests/fixtures/remote_branch_checker/local_ci_fixture_upgrade_external_backup_skipped_for_plugins.regex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/remote_branch_checker/local_ci_fixture_upgrade_external_backup_skipped_for_plugins.regex -------------------------------------------------------------------------------- /tests/fixtures/remote_branch_checker/local_ci_fixture_upgrade_txt_for_404.regex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/remote_branch_checker/local_ci_fixture_upgrade_txt_for_404.regex -------------------------------------------------------------------------------- /tests/fixtures/remote_branch_checker/local_ci_fixture_upgrade_txt_for_405.regex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/remote_branch_checker/local_ci_fixture_upgrade_txt_for_405.regex -------------------------------------------------------------------------------- /tests/fixtures/remote_branch_reporter/MDL-54987/commits.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/remote_branch_reporter/MDL-54987/commits.xml -------------------------------------------------------------------------------- /tests/fixtures/remote_branch_reporter/MDL-54987/cs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/remote_branch_reporter/MDL-54987/cs.xml -------------------------------------------------------------------------------- /tests/fixtures/remote_branch_reporter/MDL-54987/csslint.out: -------------------------------------------------------------------------------- 1 | csslint: No files specified. 2 | -------------------------------------------------------------------------------- /tests/fixtures/remote_branch_reporter/MDL-54987/docs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/remote_branch_reporter/MDL-54987/docs.xml -------------------------------------------------------------------------------- /tests/fixtures/remote_branch_reporter/MDL-54987/errors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/remote_branch_reporter/MDL-54987/errors.txt -------------------------------------------------------------------------------- /tests/fixtures/remote_branch_reporter/MDL-54987/errors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/remote_branch_reporter/MDL-54987/errors.xml -------------------------------------------------------------------------------- /tests/fixtures/remote_branch_reporter/MDL-54987/eslint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/remote_branch_reporter/MDL-54987/eslint.xml -------------------------------------------------------------------------------- /tests/fixtures/remote_branch_reporter/MDL-54987/grunt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/remote_branch_reporter/MDL-54987/grunt.xml -------------------------------------------------------------------------------- /tests/fixtures/remote_branch_reporter/MDL-54987/patchset.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/remote_branch_reporter/MDL-54987/patchset.xml -------------------------------------------------------------------------------- /tests/fixtures/remote_branch_reporter/MDL-54987/phplint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/remote_branch_reporter/MDL-54987/phplint.xml -------------------------------------------------------------------------------- /tests/fixtures/remote_branch_reporter/MDL-54987/savepoints.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/remote_branch_reporter/MDL-54987/savepoints.xml -------------------------------------------------------------------------------- /tests/fixtures/remote_branch_reporter/MDL-54987/shifter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/remote_branch_reporter/MDL-54987/shifter.xml -------------------------------------------------------------------------------- /tests/fixtures/remote_branch_reporter/MDL-54987/smurf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/remote_branch_reporter/MDL-54987/smurf.html -------------------------------------------------------------------------------- /tests/fixtures/remote_branch_reporter/MDL-54987/smurf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/remote_branch_reporter/MDL-54987/smurf.xml -------------------------------------------------------------------------------- /tests/fixtures/remote_branch_reporter/MDL-54987/stylelint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/remote_branch_reporter/MDL-54987/stylelint.xml -------------------------------------------------------------------------------- /tests/fixtures/remote_branch_reporter/MDL-54987/thirdparty.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/remote_branch_reporter/MDL-54987/thirdparty.xml -------------------------------------------------------------------------------- /tests/fixtures/remote_branch_reporter/MDL-55322/commits.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/remote_branch_reporter/MDL-55322/commits.xml -------------------------------------------------------------------------------- /tests/fixtures/remote_branch_reporter/MDL-55322/cs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/remote_branch_reporter/MDL-55322/cs.xml -------------------------------------------------------------------------------- /tests/fixtures/remote_branch_reporter/MDL-55322/csslint.out: -------------------------------------------------------------------------------- 1 | csslint: No files specified. 2 | -------------------------------------------------------------------------------- /tests/fixtures/remote_branch_reporter/MDL-55322/docs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/remote_branch_reporter/MDL-55322/docs.xml -------------------------------------------------------------------------------- /tests/fixtures/remote_branch_reporter/MDL-55322/eslint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/remote_branch_reporter/MDL-55322/eslint.xml -------------------------------------------------------------------------------- /tests/fixtures/remote_branch_reporter/MDL-55322/grunt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/remote_branch_reporter/MDL-55322/grunt.xml -------------------------------------------------------------------------------- /tests/fixtures/remote_branch_reporter/MDL-55322/patchset.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/remote_branch_reporter/MDL-55322/patchset.xml -------------------------------------------------------------------------------- /tests/fixtures/remote_branch_reporter/MDL-55322/phplint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/remote_branch_reporter/MDL-55322/phplint.xml -------------------------------------------------------------------------------- /tests/fixtures/remote_branch_reporter/MDL-55322/savepoints.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/remote_branch_reporter/MDL-55322/savepoints.xml -------------------------------------------------------------------------------- /tests/fixtures/remote_branch_reporter/MDL-55322/shifter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/remote_branch_reporter/MDL-55322/shifter.xml -------------------------------------------------------------------------------- /tests/fixtures/remote_branch_reporter/MDL-55322/smurf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/remote_branch_reporter/MDL-55322/smurf.html -------------------------------------------------------------------------------- /tests/fixtures/remote_branch_reporter/MDL-55322/smurf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/remote_branch_reporter/MDL-55322/smurf.xml -------------------------------------------------------------------------------- /tests/fixtures/remote_branch_reporter/MDL-55322/stylelint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/remote_branch_reporter/MDL-55322/stylelint.xml -------------------------------------------------------------------------------- /tests/fixtures/remote_branch_reporter/MDL-55322/thirdparty.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/remote_branch_reporter/MDL-55322/thirdparty.xml -------------------------------------------------------------------------------- /tests/fixtures/remote_branch_reporter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/remote_branch_reporter/README.md -------------------------------------------------------------------------------- /tests/fixtures/verify_commit_messages/amos-bad-syntax.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/verify_commit_messages/amos-bad-syntax.patch -------------------------------------------------------------------------------- /tests/fixtures/verify_commit_messages/amos-good-commands.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/verify_commit_messages/amos-good-commands.patch -------------------------------------------------------------------------------- /tests/fixtures/verify_commit_messages/amos-incomplete.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/verify_commit_messages/amos-incomplete.patch -------------------------------------------------------------------------------- /tests/fixtures/verify_commit_messages/amos-no-modified-files.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/verify_commit_messages/amos-no-modified-files.patch -------------------------------------------------------------------------------- /tests/fixtures/verify_commit_messages/backslash-ended-lines.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/verify_commit_messages/backslash-ended-lines.patch -------------------------------------------------------------------------------- /tests/fixtures/verify_commit_messages/includes-parent-in-message.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/verify_commit_messages/includes-parent-in-message.patch -------------------------------------------------------------------------------- /tests/fixtures/verify_commit_messages/no-code-area.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/verify_commit_messages/no-code-area.patch -------------------------------------------------------------------------------- /tests/fixtures/verify_commit_messages/no-colon.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/verify_commit_messages/no-colon.patch -------------------------------------------------------------------------------- /tests/fixtures/verify_commit_messages/no-issue-id.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/verify_commit_messages/no-issue-id.patch -------------------------------------------------------------------------------- /tests/fixtures/verify_commit_messages/ok.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/verify_commit_messages/ok.patch -------------------------------------------------------------------------------- /tests/fixtures/verify_commit_messages/too-long-body.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/verify_commit_messages/too-long-body.patch -------------------------------------------------------------------------------- /tests/fixtures/verify_commit_messages/too-long.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/verify_commit_messages/too-long.patch -------------------------------------------------------------------------------- /tests/fixtures/verify_commit_messages/warning-elsewhere.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/verify_commit_messages/warning-elsewhere.patch -------------------------------------------------------------------------------- /tests/fixtures/verify_phpunit_xml/add_uncovered_test.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/verify_phpunit_xml/add_uncovered_test.patch -------------------------------------------------------------------------------- /tests/fixtures/verify_phpunit_xml/multiple_classes_in_file.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/verify_phpunit_xml/multiple_classes_in_file.patch -------------------------------------------------------------------------------- /tests/fixtures/versions_check_set/extra_version_digit.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/versions_check_set/extra_version_digit.patch -------------------------------------------------------------------------------- /tests/fixtures/versions_check_set/invalid_component.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/versions_check_set/invalid_component.patch -------------------------------------------------------------------------------- /tests/fixtures/versions_check_set/invalid_date.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/versions_check_set/invalid_date.patch -------------------------------------------------------------------------------- /tests/fixtures/versions_check_set/main_version_missing.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/versions_check_set/main_version_missing.patch -------------------------------------------------------------------------------- /tests/fixtures/versions_check_set/no_moodle_internal.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/versions_check_set/no_moodle_internal.patch -------------------------------------------------------------------------------- /tests/fixtures/versions_check_set/no_version_defined.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/versions_check_set/no_version_defined.patch -------------------------------------------------------------------------------- /tests/fixtures/versions_check_set/short_array_syntax.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/versions_check_set/short_array_syntax.patch -------------------------------------------------------------------------------- /tests/fixtures/versions_check_set/short_version.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/versions_check_set/short_version.patch -------------------------------------------------------------------------------- /tests/fixtures/versions_check_set/version_too_far_in_future.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/fixtures/versions_check_set/version_too_far_in_future.patch -------------------------------------------------------------------------------- /tests/git_sync_two_branches.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/git_sync_two_branches.bats -------------------------------------------------------------------------------- /tests/grunt_process.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/grunt_process.bats -------------------------------------------------------------------------------- /tests/illegal_whitespace.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/illegal_whitespace.bats -------------------------------------------------------------------------------- /tests/libs/bats-assert/load.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/libs/bats-assert/load.bash -------------------------------------------------------------------------------- /tests/libs/bats-assert/src/assert.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/libs/bats-assert/src/assert.bash -------------------------------------------------------------------------------- /tests/libs/bats-support/load.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/libs/bats-support/load.bash -------------------------------------------------------------------------------- /tests/libs/bats-support/src/error.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/libs/bats-support/src/error.bash -------------------------------------------------------------------------------- /tests/libs/bats-support/src/output.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/libs/bats-support/src/output.bash -------------------------------------------------------------------------------- /tests/libs/shared_setup.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/libs/shared_setup.bash -------------------------------------------------------------------------------- /tests/list_valid_components.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/list_valid_components.bats -------------------------------------------------------------------------------- /tests/mustache_lint.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/mustache_lint.bats -------------------------------------------------------------------------------- /tests/mustache_lint_plugins.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/mustache_lint_plugins.bats -------------------------------------------------------------------------------- /tests/php_lint.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/php_lint.bats -------------------------------------------------------------------------------- /tests/prepare_npm_stuff.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/prepare_npm_stuff.bats -------------------------------------------------------------------------------- /tests/remote_branch_checker.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/remote_branch_checker.bats -------------------------------------------------------------------------------- /tests/remote_branch_reporter.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/remote_branch_reporter.bats -------------------------------------------------------------------------------- /tests/setup.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/setup.bats -------------------------------------------------------------------------------- /tests/thirdparty_check.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/thirdparty_check.bats -------------------------------------------------------------------------------- /tests/travis-branch-checker.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/travis-branch-checker.bats -------------------------------------------------------------------------------- /tests/upgrade_external_backup.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/upgrade_external_backup.bats -------------------------------------------------------------------------------- /tests/verifications.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/verifications.bats -------------------------------------------------------------------------------- /tests/verify_commit_messages.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/verify_commit_messages.bats -------------------------------------------------------------------------------- /tests/verify_phpunit_xml.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/verify_phpunit_xml.bats -------------------------------------------------------------------------------- /tests/versions_check_set.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tests/versions_check_set.bats -------------------------------------------------------------------------------- /thirdparty_check/thirdparty_check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/thirdparty_check/thirdparty_check.sh -------------------------------------------------------------------------------- /thirdparty_check/thirdpartylocations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/thirdparty_check/thirdpartylocations.php -------------------------------------------------------------------------------- /tracker_automations/bulk_precheck_issues/bulk_precheck_issues.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tracker_automations/bulk_precheck_issues/bulk_precheck_issues.sh -------------------------------------------------------------------------------- /tracker_automations/bulk_precheck_issues/criteria/awaiting_integration/override-defaults.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tracker_automations/bulk_precheck_issues/criteria/awaiting_integration/override-defaults.sh -------------------------------------------------------------------------------- /tracker_automations/bulk_precheck_issues/criteria/awaiting_integration/postissue.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tracker_automations/bulk_precheck_issues/criteria/awaiting_integration/postissue.sh -------------------------------------------------------------------------------- /tracker_automations/bulk_precheck_issues/criteria/awaiting_integration/query.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tracker_automations/bulk_precheck_issues/criteria/awaiting_integration/query.sh -------------------------------------------------------------------------------- /tracker_automations/bulk_precheck_issues/criteria/awaiting_peer_review/postissue.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tracker_automations/bulk_precheck_issues/criteria/awaiting_peer_review/postissue.sh -------------------------------------------------------------------------------- /tracker_automations/bulk_precheck_issues/criteria/awaiting_peer_review/query.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tracker_automations/bulk_precheck_issues/criteria/awaiting_peer_review/query.sh -------------------------------------------------------------------------------- /tracker_automations/bulk_precheck_issues/criteria/developer_request/postissue.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tracker_automations/bulk_precheck_issues/criteria/developer_request/postissue.sh -------------------------------------------------------------------------------- /tracker_automations/bulk_precheck_issues/criteria/developer_request/query.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tracker_automations/bulk_precheck_issues/criteria/developer_request/query.sh -------------------------------------------------------------------------------- /tracker_automations/bulk_precheck_issues/util.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tracker_automations/bulk_precheck_issues/util.sh -------------------------------------------------------------------------------- /tracker_automations/bulk_prelaunch_jobs/bulk_prelaunch_jobs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tracker_automations/bulk_prelaunch_jobs/bulk_prelaunch_jobs.sh -------------------------------------------------------------------------------- /tracker_automations/bulk_prelaunch_jobs/criteria/awaiting_component_lead_review/jobs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tracker_automations/bulk_prelaunch_jobs/criteria/awaiting_component_lead_review/jobs.sh -------------------------------------------------------------------------------- /tracker_automations/bulk_prelaunch_jobs/criteria/awaiting_component_lead_review/postissue.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tracker_automations/bulk_prelaunch_jobs/criteria/awaiting_component_lead_review/postissue.sh -------------------------------------------------------------------------------- /tracker_automations/bulk_prelaunch_jobs/criteria/awaiting_component_lead_review/query.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tracker_automations/bulk_prelaunch_jobs/criteria/awaiting_component_lead_review/query.sh -------------------------------------------------------------------------------- /tracker_automations/bulk_prelaunch_jobs/criteria/awaiting_integration/jobs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tracker_automations/bulk_prelaunch_jobs/criteria/awaiting_integration/jobs.sh -------------------------------------------------------------------------------- /tracker_automations/bulk_prelaunch_jobs/criteria/awaiting_integration/postissue.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tracker_automations/bulk_prelaunch_jobs/criteria/awaiting_integration/postissue.sh -------------------------------------------------------------------------------- /tracker_automations/bulk_prelaunch_jobs/criteria/awaiting_integration/query.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tracker_automations/bulk_prelaunch_jobs/criteria/awaiting_integration/query.sh -------------------------------------------------------------------------------- /tracker_automations/bulk_prelaunch_jobs/criteria/list_of_mdls/jobs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tracker_automations/bulk_prelaunch_jobs/criteria/list_of_mdls/jobs.sh -------------------------------------------------------------------------------- /tracker_automations/bulk_prelaunch_jobs/criteria/list_of_mdls/postissue.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tracker_automations/bulk_prelaunch_jobs/criteria/list_of_mdls/postissue.sh -------------------------------------------------------------------------------- /tracker_automations/bulk_prelaunch_jobs/criteria/list_of_mdls/query.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tracker_automations/bulk_prelaunch_jobs/criteria/list_of_mdls/query.sh -------------------------------------------------------------------------------- /tracker_automations/bulk_prelaunch_jobs/criteria/list_of_mdls_sdev/jobs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tracker_automations/bulk_prelaunch_jobs/criteria/list_of_mdls_sdev/jobs.sh -------------------------------------------------------------------------------- /tracker_automations/bulk_prelaunch_jobs/criteria/list_of_mdls_sdev/postissue.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tracker_automations/bulk_prelaunch_jobs/criteria/list_of_mdls_sdev/postissue.sh -------------------------------------------------------------------------------- /tracker_automations/bulk_prelaunch_jobs/criteria/list_of_mdls_sdev/query.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tracker_automations/bulk_prelaunch_jobs/criteria/list_of_mdls_sdev/query.sh -------------------------------------------------------------------------------- /tracker_automations/bulk_prelaunch_jobs/criteria/multi_database/jobs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tracker_automations/bulk_prelaunch_jobs/criteria/multi_database/jobs.sh -------------------------------------------------------------------------------- /tracker_automations/bulk_prelaunch_jobs/criteria/multi_database/postissue.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tracker_automations/bulk_prelaunch_jobs/criteria/multi_database/postissue.sh -------------------------------------------------------------------------------- /tracker_automations/bulk_prelaunch_jobs/criteria/multi_database/query.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tracker_automations/bulk_prelaunch_jobs/criteria/multi_database/query.sh -------------------------------------------------------------------------------- /tracker_automations/check_marked_as_integrated/check_marked_as_integrated.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tracker_automations/check_marked_as_integrated/check_marked_as_integrated.sh -------------------------------------------------------------------------------- /tracker_automations/check_marked_as_integrated/util.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tracker_automations/check_marked_as_integrated/util.sh -------------------------------------------------------------------------------- /tracker_automations/close_tested_issues/close_tested_issues.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tracker_automations/close_tested_issues/close_tested_issues.sh -------------------------------------------------------------------------------- /tracker_automations/component_leads_integration_mover/component_leads_integration_mover.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tracker_automations/component_leads_integration_mover/component_leads_integration_mover.sh -------------------------------------------------------------------------------- /tracker_automations/component_leads_integration_mover/lib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tracker_automations/component_leads_integration_mover/lib.sh -------------------------------------------------------------------------------- /tracker_automations/continuous_manage_queues/continuous_manage_queues.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tracker_automations/continuous_manage_queues/continuous_manage_queues.sh -------------------------------------------------------------------------------- /tracker_automations/continuous_manage_queues/lib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tracker_automations/continuous_manage_queues/lib.sh -------------------------------------------------------------------------------- /tracker_automations/count_delayed_last_cycle/count_delayed_last_cycle.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tracker_automations/count_delayed_last_cycle/count_delayed_last_cycle.sh -------------------------------------------------------------------------------- /tracker_automations/count_reopened_last_cycle/count_reopened_last_cycle.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tracker_automations/count_reopened_last_cycle/count_reopened_last_cycle.sh -------------------------------------------------------------------------------- /tracker_automations/count_test_failed_last_cycle/count_test_failed_last_cycle.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tracker_automations/count_test_failed_last_cycle/count_test_failed_last_cycle.sh -------------------------------------------------------------------------------- /tracker_automations/delay_awaiting_issues/delay_awaiting_issues.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tracker_automations/delay_awaiting_issues/delay_awaiting_issues.sh -------------------------------------------------------------------------------- /tracker_automations/manage_waiting_for_feedback/manage_waiting_for_feedback.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tracker_automations/manage_waiting_for_feedback/manage_waiting_for_feedback.sh -------------------------------------------------------------------------------- /tracker_automations/move_to_current_integration/move_to_current_integration.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tracker_automations/move_to_current_integration/move_to_current_integration.sh -------------------------------------------------------------------------------- /tracker_automations/mv_reopened_out_from_current/mv_reopened_out_from_current.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tracker_automations/mv_reopened_out_from_current/mv_reopened_out_from_current.sh -------------------------------------------------------------------------------- /tracker_automations/normal_manage_queues/lib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tracker_automations/normal_manage_queues/lib.sh -------------------------------------------------------------------------------- /tracker_automations/normal_manage_queues/normal_manage_queues.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tracker_automations/normal_manage_queues/normal_manage_queues.sh -------------------------------------------------------------------------------- /tracker_automations/progress_automated_tested/progress_automated_tested.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tracker_automations/progress_automated_tested/progress_automated_tested.sh -------------------------------------------------------------------------------- /tracker_automations/remove_ci_label_from_waiting_integration/remove_ci_label_from_waiting_integration.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tracker_automations/remove_ci_label_from_waiting_integration/remove_ci_label_from_waiting_integration.sh -------------------------------------------------------------------------------- /tracker_automations/remove_ci_label_from_wip/remove_ci_label_from_wip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tracker_automations/remove_ci_label_from_wip/remove_ci_label_from_wip.sh -------------------------------------------------------------------------------- /tracker_automations/send_rebase_message/send_rebase_message.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tracker_automations/send_rebase_message/send_rebase_message.sh -------------------------------------------------------------------------------- /tracker_automations/set_integration_priority_to_one/set_integration_priority_to_one.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tracker_automations/set_integration_priority_to_one/set_integration_priority_to_one.sh -------------------------------------------------------------------------------- /tracker_automations/set_integration_priority_to_zero/set_integration_priority_to_zero.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tracker_automations/set_integration_priority_to_zero/set_integration_priority_to_zero.sh -------------------------------------------------------------------------------- /tracker_content_gadget/clr_candidate_picker.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tracker_content_gadget/clr_candidate_picker.html -------------------------------------------------------------------------------- /tracker_content_gadget/clr_candidate_picker_split.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tracker_content_gadget/clr_candidate_picker_split.html -------------------------------------------------------------------------------- /tracker_content_gadget/personal_candidate_picker.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tracker_content_gadget/personal_candidate_picker.html -------------------------------------------------------------------------------- /tracker_content_gadget/personal_current_picker.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/tracker_content_gadget/personal_current_picker.html -------------------------------------------------------------------------------- /travis/check_branch_status.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/travis/check_branch_status.php -------------------------------------------------------------------------------- /upgrade_external_backup_check/upgrade_external_backup_check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/upgrade_external_backup_check/upgrade_external_backup_check.sh -------------------------------------------------------------------------------- /verify_commit_messages/amoslib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/verify_commit_messages/amoslib.php -------------------------------------------------------------------------------- /verify_commit_messages/check_amos.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/verify_commit_messages/check_amos.php -------------------------------------------------------------------------------- /verify_commit_messages/commits2checkstyle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/verify_commit_messages/commits2checkstyle.php -------------------------------------------------------------------------------- /verify_commit_messages/verify_commit_messages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/verify_commit_messages/verify_commit_messages.sh -------------------------------------------------------------------------------- /verify_phpunit_xml/create_phpunit_xml.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/verify_phpunit_xml/create_phpunit_xml.php -------------------------------------------------------------------------------- /verify_phpunit_xml/verify_phpunit_xml.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/verify_phpunit_xml/verify_phpunit_xml.sh -------------------------------------------------------------------------------- /version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/version.php -------------------------------------------------------------------------------- /versions_check_set/versions_check_set.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodlehq/moodle-local_ci/HEAD/versions_check_set/versions_check_set.sh --------------------------------------------------------------------------------