├── .foreman ├── .gitattributes ├── .gitignore ├── .gitlab-ci.yml ├── .hound.yml ├── .rspec ├── .rubocop.yml ├── .travis.yml ├── CHANGELOG ├── CONTRIBUTING.md ├── Gemfile ├── Gemfile.lock ├── Guardfile ├── LICENSE ├── Procfile ├── README.md ├── Rakefile ├── VERSION ├── app ├── assets │ ├── images │ │ ├── .directory │ │ ├── arch.jpg │ │ ├── favicon.ico │ │ ├── loader.gif │ │ ├── no_avatar.png │ │ ├── rails.png │ │ └── service_sample.png │ ├── javascripts │ │ ├── Chart.min.js │ │ ├── application.js.coffee │ │ ├── build.coffee │ │ ├── pager.js.coffee │ │ └── projects.js.coffee │ └── stylesheets │ │ ├── application.scss │ │ ├── generic │ │ ├── avatar.scss │ │ ├── buttons.scss │ │ ├── callout.scss │ │ ├── common.scss │ │ ├── forms.scss │ │ ├── tables.scss │ │ ├── typography.scss │ │ └── xterm.scss │ │ ├── main │ │ ├── fonts.scss │ │ ├── layout.scss │ │ ├── mixins.scss │ │ └── variables.scss │ │ └── sections │ │ ├── builds.scss │ │ ├── lint.scss │ │ ├── login.scss │ │ ├── navbar.scss │ │ ├── projects.scss │ │ ├── runners.scss │ │ └── setup.scss ├── controllers │ ├── admin │ │ ├── application_controller.rb │ │ ├── application_settings_controller.rb │ │ ├── builds_controller.rb │ │ ├── events_controller.rb │ │ ├── projects_controller.rb │ │ ├── runner_projects_controller.rb │ │ └── runners_controller.rb │ ├── application_controller.rb │ ├── builds_controller.rb │ ├── charts_controller.rb │ ├── commits_controller.rb │ ├── events_controller.rb │ ├── helps_controller.rb │ ├── lints_controller.rb │ ├── projects_controller.rb │ ├── runner_projects_controller.rb │ ├── runners_controller.rb │ ├── services_controller.rb │ ├── triggers_controller.rb │ ├── user_sessions_controller.rb │ ├── variables_controller.rb │ └── web_hooks_controller.rb ├── helpers │ ├── application_helper.rb │ ├── builds_helper.rb │ ├── commits_helper.rb │ ├── gitlab_helper.rb │ ├── icons_helper.rb │ ├── projects_helper.rb │ ├── routes_helper.rb │ ├── runners_helper.rb │ ├── triggers_helper.rb │ ├── user_helper.rb │ └── user_sessions_helper.rb ├── mailers │ ├── .gitkeep │ ├── emails │ │ └── builds.rb │ └── notify.rb ├── models │ ├── .gitkeep │ ├── application_setting.rb │ ├── build.rb │ ├── commit.rb │ ├── event.rb │ ├── network.rb │ ├── project.rb │ ├── project_services │ │ ├── hip_chat_message.rb │ │ ├── hip_chat_service.rb │ │ ├── mail_service.rb │ │ ├── slack_message.rb │ │ └── slack_service.rb │ ├── project_status.rb │ ├── runner.rb │ ├── runner_project.rb │ ├── service.rb │ ├── trigger.rb │ ├── trigger_request.rb │ ├── user.rb │ ├── user_session.rb │ ├── variable.rb │ └── web_hook.rb ├── services │ ├── create_commit_service.rb │ ├── create_project_service.rb │ ├── create_trigger_request_service.rb │ ├── event_service.rb │ ├── image_for_build_service.rb │ ├── register_build_service.rb │ ├── test_hook_service.rb │ └── web_hook_service.rb ├── views │ ├── admin │ │ ├── application_settings │ │ │ ├── _form.html.haml │ │ │ └── show.html.haml │ │ ├── builds │ │ │ ├── _build.html.haml │ │ │ └── index.html.haml │ │ ├── events │ │ │ └── index.html.haml │ │ ├── projects │ │ │ ├── _project.html.haml │ │ │ └── index.html.haml │ │ ├── runner_projects │ │ │ └── index.html.haml │ │ └── runners │ │ │ ├── _runner.html.haml │ │ │ ├── index.html.haml │ │ │ ├── show.html.haml │ │ │ └── update.js.haml │ ├── builds │ │ ├── _build.html.haml │ │ └── show.html.haml │ ├── charts │ │ ├── _build_times.haml │ │ ├── _builds.haml │ │ ├── _overall.haml │ │ └── show.html.haml │ ├── commits │ │ ├── _commit.html.haml │ │ └── show.html.haml │ ├── errors │ │ └── show.haml │ ├── events │ │ └── index.html.haml │ ├── helps │ │ ├── oauth2.html.haml │ │ └── show.html.haml │ ├── kaminari │ │ ├── _first_page.html.haml │ │ ├── _gap.html.haml │ │ ├── _last_page.html.haml │ │ ├── _next_page.html.haml │ │ ├── _page.html.haml │ │ ├── _paginator.html.haml │ │ └── _prev_page.html.haml │ ├── layouts │ │ ├── _head.html.haml │ │ ├── _info.html.haml │ │ ├── _nav.html.haml │ │ ├── _nav_admin.html.haml │ │ ├── _nav_project.html.haml │ │ ├── admin.html.haml │ │ ├── application.html.haml │ │ ├── empty.html.haml │ │ ├── notify.html.haml │ │ └── project.html.haml │ ├── lints │ │ ├── _create.html.haml │ │ ├── create.js.haml │ │ └── show.html.haml │ ├── notify │ │ ├── build_fail_email.html.haml │ │ ├── build_fail_email.text.erb │ │ ├── build_success_email.html.haml │ │ └── build_success_email.text.erb │ ├── projects │ │ ├── _form.html.haml │ │ ├── _gl_projects.html.haml │ │ ├── _info.html.haml │ │ ├── _no_runners.html.haml │ │ ├── _project.html.haml │ │ ├── _public.html.haml │ │ ├── _search.html.haml │ │ ├── edit.html.haml │ │ ├── gitlab.html.haml │ │ ├── index.html.haml │ │ └── show.html.haml │ ├── runners │ │ ├── _runner.html.haml │ │ ├── _shared_runners.html.haml │ │ ├── _specific_runners.html.haml │ │ ├── edit.html.haml │ │ ├── index.html.haml │ │ └── show.html.haml │ ├── services │ │ ├── _form.html.haml │ │ ├── edit.html.haml │ │ └── index.html.haml │ ├── shared │ │ ├── _guide.html.haml │ │ └── _no_runners.html.haml │ ├── triggers │ │ ├── _trigger.html.haml │ │ └── index.html.haml │ ├── user_sessions │ │ ├── new.html.haml │ │ └── show.html.haml │ ├── variables │ │ └── show.html.haml │ └── web_hooks │ │ └── index.html.haml └── workers │ ├── hip_chat_notifier_worker.rb │ ├── slack_notifier_worker.rb │ └── web_hook_worker.rb ├── bin ├── bundle ├── rails ├── rake ├── rspec └── spring ├── config.ru ├── config ├── application.rb ├── application.yml.example ├── application.yml.example.development ├── boot.rb ├── database.yml.mysql ├── database.yml.postgresql ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ └── test.rb ├── initializers │ ├── 1_settings.rb │ ├── 2_app.rb │ ├── 3_sidekiq.rb │ ├── 6_rack_profiler.rb │ ├── backtrace_silencers.rb │ ├── connection_fix.rb │ ├── cookies_serializer.rb │ ├── haml.rb │ ├── inflections.rb │ ├── mime_types.rb │ ├── secret_token.rb │ ├── session_store.rb │ ├── smtp_settings.rb.sample │ ├── state_machine_patch.rb │ └── wrap_parameters.rb ├── locales │ ├── devise.en.yml │ └── en.yml ├── resque.yml.example ├── routes.rb ├── schedule.rb ├── secrets.yml.example ├── sidekiq.yml.example ├── unicorn.rb.example └── unicorn.rb.example.development ├── db ├── migrate │ ├── 20121004140911_create_projects.rb │ ├── 20121004165038_create_builds.rb │ ├── 20121101091638_devise_create_users.rb │ ├── 20121101121639_add_token_to_project.rb │ ├── 20121106143042_add_ref_functionality.rb │ ├── 20121108160657_add_gitlab_url_to_project.rb │ ├── 20121108174237_add_started_at_to_build.rb │ ├── 20121115094430_increate_trace_colunm_limit.rb │ ├── 20121115132252_add_tmp_file_to_build.rb │ ├── 20121116144312_add_before_sha_to_build.rb │ ├── 20121224092350_add_schedule_to_projects.rb │ ├── 20130114153451_change_schedule_invertal.rb │ ├── 20130129121754_add_public_flag_to_project.rb │ ├── 20130531112551_add_data_field_to_build.rb │ ├── 20130531122131_remove_path_field_from_project.rb │ ├── 20130531125905_create_runners.rb │ ├── 20130531133603_add_runner_id_to_build.rb │ ├── 20130603130920_remove_users_table.rb │ ├── 20130603144030_add_more_fields_to_project.rb │ ├── 20130603144959_create_runner_projects.rb │ ├── 20130603161449_add_project_gitlab_id_to_project.rb │ ├── 20130628142321_add_index_project_id_to_builds.rb │ ├── 20130705171042_add_description_to_runner.rb │ ├── 20130710164015_add_db_index.rb │ ├── 20130816201200_change_push_data_limit.rb │ ├── 20130906175737_add_sessions_table.rb │ ├── 20131023103430_add_allow_git_fetch_to_project.rb │ ├── 20131120155545_add_email_notification_fields_to_project.rb │ ├── 20140130121538_rename_project_fields.rb │ ├── 20140222210357_create_web_hook.rb │ ├── 20140506091853_remove_public_key_from_runner.rb │ ├── 20140823225019_create_commits_from_builds.rb │ ├── 20140909142245_add_skip_refs_to_projects.rb │ ├── 20141001125939_add_coverage_parser.rb │ ├── 20141001132129_add_coverage_to_build.rb │ ├── 20141028162820_add_sha_index_to_build.rb │ ├── 20141031114419_migrate_build_to_commits.rb │ ├── 20141031141708_add_commit_indicies.rb │ ├── 20141103135037_add_parallel_to_build.rb │ ├── 20141103151359_add_commands_to_build.rb │ ├── 20141103162726_add_job_id_to_build.rb │ ├── 20141104130024_migrate_jobs.rb │ ├── 20141104153744_add_name_to_job.rb │ ├── 20141127153745_remove_scripts_from_project.rb │ ├── 20141201153755_remove_invalid_build.rb │ ├── 20141204133321_create_service.rb │ ├── 20150111062026_add_filter_to_jobs.rb │ ├── 20150113001832_acts_as_taggable_on_migration.acts_as_taggable_on_engine.rb │ ├── 20150113001833_add_missing_unique_indices.acts_as_taggable_on_engine.rb │ ├── 20150113001834_add_taggings_counter_cache_to_tags.acts_as_taggable_on_engine.rb │ ├── 20150113001835_add_missing_taggable_index.acts_as_taggable_on_engine.rb │ ├── 20150204001035_build_missing_services.rb │ ├── 20150226001835_add_job_type_to_job.rb │ ├── 20150306131416_add_contacted_at_to_runner.rb │ ├── 20150306135341_add_active_to_runner.rb │ ├── 20150310001733_rename_committer_to_pusher.rb │ ├── 20150320001810_create_event_table.rb │ ├── 20150324001123_add_settings_for_shared_runners.rb │ ├── 20150324001227_migrate_shared_runners.rb │ ├── 20150330001111_disable_shared_runners.rb │ ├── 20150415142013_add_deleted_at_to_jobs.rb │ ├── 20150417000045_cleanup_the_build_model.rb │ ├── 20150504010150_migrate_url_to_path.rb │ ├── 20150504010250_rename_gitlab_url_to_path.rb │ ├── 20150508011360_add_info_fields_to_runner.rb │ ├── 20150528011001_add_fields_to_builds.rb │ ├── 20150528011012_move_job_name_to_build.rb │ ├── 20150529012113_add_tag_to_commits.rb │ ├── 20150601043220_add_yaml_to_projects.rb │ ├── 20150601043231_migrate_jobs_to_yaml.rb │ ├── 20150602000240_change_default_build_timeout.rb │ ├── 20150605002131_create_variables.rb │ ├── 20150616001155_add_errors_to_commit.rb │ ├── 20150630091815_add_options_to_build.rb │ ├── 20150703125244_add_encrypted_value_to_variables.rb │ ├── 20150703125325_encrypt_variables.rb │ ├── 20150707134456_add_allow_failure_to_builds.rb │ ├── 20150710113836_add_job_type_to_builds.rb │ ├── 20150710113851_migrate_deploy_to_job_type_for_builds.rb │ ├── 20150721204649_truncate_sessions.rb │ ├── 20150729145246_create_application_settings.rb │ ├── 20150803142346_rename_job_type_to_stage_builds.rb │ ├── 20150806091503_add_committed_at_to_commits.rb │ ├── 20150806091655_update_committed_at_with_created_at.rb │ ├── 20150806102222_create_trigger.rb │ ├── 20150806102457_add_trigger_to_builds.rb │ ├── 20150806105404_create_trigger_request.rb │ ├── 20150819162227_add_commit_id_to_trigger_requests.rb │ ├── 20150824202238_add_index_for_committed_at_and_id.rb │ ├── 20150914102123_migrate_ci_tables.rb │ ├── 20150921081619_rename_taggings_idx.rb │ └── limits_to_mysql.rb ├── schema.rb └── seeds.rb ├── doc ├── README.md ├── api │ ├── README.md │ ├── builds.md │ ├── commits.md │ ├── forks.md │ ├── projects.md │ └── runners.md ├── deployment │ └── README.md ├── docker │ ├── README.md │ ├── using_docker_build.md │ └── using_docker_images.md ├── examples │ ├── README.md │ ├── test-and-deploy-python-application-to-heroku.md │ ├── test-and-deploy-ruby-application-to-heroku.md │ └── test-clojure-application.md ├── install │ ├── README.md │ └── requirements.md ├── migration_to_omnibus │ └── README.md ├── permissions │ └── README.md ├── quick_start │ ├── README.md │ ├── build_status.png │ ├── commit_status.png │ ├── new_commit.png │ ├── projects.png │ ├── runners.png │ └── runners_activated.png ├── raketasks │ ├── README.md │ └── backup_restore.md ├── runners │ ├── README.md │ ├── project_specific.png │ ├── shared_runner.png │ └── shared_to_specific_admin.png ├── update │ ├── 3.0-to-3.1.md │ ├── 3.1-to-3.2.md │ ├── 3.2-to-4.0.md │ ├── 4.0-to-4.1.md │ ├── 4.1-to-4.2.md │ ├── 4.2-to-4.3.md │ ├── 4.3-to-5.0.md │ ├── 5.0-to-5.1.md │ ├── 5.1-to-5.2.md │ ├── 5.2-to-5.3.md │ ├── 5.3-to-5.4.md │ ├── 5.4-to-7.8.md │ ├── 7.10-to-7.11.md │ ├── 7.11-to-7.12.md │ ├── 7.12-to-7.13.md │ ├── 7.13-to-7.14.md │ ├── 7.14-to-8.0.md │ ├── 7.8-to-7.9.md │ ├── 7.9-to-7.10.md │ ├── README.md │ └── patch_versions.md ├── variables │ └── README.md └── yaml │ └── README.md ├── lib ├── ansi2html.rb ├── api │ ├── api.rb │ ├── builds.rb │ ├── commits.rb │ ├── entities.rb │ ├── forks.rb │ ├── helpers.rb │ ├── projects.rb │ ├── runners.rb │ └── triggers.rb ├── assets │ └── .gitkeep ├── backup │ ├── builds.rb │ ├── database.rb │ └── manager.rb ├── charts.rb ├── current_settings.rb ├── git.rb ├── gitlab_ci_yaml_processor.rb ├── scheduler.rb ├── static_model.rb ├── support │ ├── init.d │ │ ├── gitlab_ci │ │ └── gitlab_ci.default.example │ ├── mysql-postgresql-converter │ │ ├── LICENSE │ │ ├── README.md │ │ ├── db_converter.py │ │ └── splice_drop_indexes │ └── nginx │ │ └── gitlab_ci ├── tasks │ ├── .gitkeep │ ├── add_limits_mysql.rake │ ├── backup.rake │ ├── brakeman.rake │ ├── cache.rake │ ├── cleanup.rake │ ├── info.rake │ ├── schedule_builds.rake │ ├── setup.rake │ └── sidekiq.rake ├── upgrader.rb └── version_info.rb ├── public ├── .directory ├── 404.html ├── 422.html ├── 500.html ├── build-canceled.svg ├── build-failed.svg ├── build-pending.svg ├── build-running.svg ├── build-skipped.svg ├── build-success.svg ├── build-unknown.svg ├── deploy.html ├── favicon.ico ├── gitlab-ci-screenshot.png ├── gitlab_logo.png ├── robots.txt └── static.css ├── script ├── background_jobs ├── prepare_build.sh ├── rails ├── upgrade.rb └── web ├── spec ├── controllers │ ├── commits_controller_spec.rb │ └── projects_controller_spec.rb ├── factories │ ├── builds.rb │ ├── commits.rb │ ├── events.rb │ ├── projects.rb │ ├── runner_projects.rb │ ├── runners.rb │ ├── trigger_requests.rb │ ├── triggers.rb │ ├── users.rb │ └── web_hook.rb ├── features │ ├── admin │ │ ├── builds_spec.rb │ │ ├── events_spec.rb │ │ ├── projects_spec.rb │ │ └── runners_spec.rb │ ├── builds_spec.rb │ ├── commits_spec.rb │ ├── events_spec.rb │ ├── lint_spec.rb │ ├── projects_spec.rb │ ├── runners_spec.rb │ ├── triggers_spec.rb │ └── variables_spec.rb ├── helpers │ ├── application_helper_spec.rb │ ├── runners_helper_spec.rb │ ├── user_helper_spec.rb │ └── user_sessions_helper_spec.rb ├── lib │ ├── ansi2html_spec.rb │ ├── charts_spec.rb │ ├── gitlab_ci_yaml_processor_spec.rb │ └── upgrader_spec.rb ├── mailers │ └── notify_spec.rb ├── models │ ├── build_spec.rb │ ├── commit_spec.rb │ ├── mail_service_spec.rb │ ├── network_spec.rb │ ├── project_services │ │ ├── hip_chat_message_spec.rb │ │ ├── hip_chat_service_spec.rb │ │ ├── slack_message_spec.rb │ │ └── slack_service_spec.rb │ ├── project_spec.rb │ ├── runner_spec.rb │ ├── service_spec.rb │ ├── trigger_spec.rb │ ├── user_spec.rb │ ├── variable_spec.rb │ └── web_hook_spec.rb ├── requests │ ├── api │ │ ├── builds_spec.rb │ │ ├── commits_spec.rb │ │ ├── forks_spec.rb │ │ ├── projects_spec.rb │ │ ├── runners_spec.rb │ │ └── triggers_spec.rb │ ├── builds_spec.rb │ └── commits_spec.rb ├── services │ ├── create_commit_service_spec.rb │ ├── create_project_service_spec.rb │ ├── create_trigger_request_service_spec.rb │ ├── event_service_spec.rb │ ├── image_for_build_service_spec.rb │ ├── register_build_service_spec.rb │ └── web_hook_service_spec.rb ├── six.tar.gz ├── spec_helper.rb └── support │ ├── api_helpers.rb │ ├── capybara.rb │ ├── db_cleaner.rb │ ├── gitlab_stubs │ ├── gitlab_ci.yml │ ├── project_8.json │ ├── project_8_hooks.json │ ├── projects.json │ ├── raw_project.yml │ ├── session.json │ └── user.json │ ├── login_helpers.rb │ ├── monkey_patches │ └── oauth2.rb │ ├── setup_builds_storage.rb │ ├── stub_gitlab_calls.rb │ ├── stub_gitlab_data.rb │ └── webmock.rb └── vendor ├── assets ├── javascripts │ ├── .gitkeep │ └── jquery.endless-scroll.js └── stylesheets │ └── .gitkeep └── plugins └── .gitkeep /.foreman: -------------------------------------------------------------------------------- 1 | port: 9000 2 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | CHANGELOG merge=union 2 | 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.hound.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/.hound.yml -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color --format Fuubar 2 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/CHANGELOG -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /Guardfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/Guardfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/Procfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/Rakefile -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 8.0.0.pre -------------------------------------------------------------------------------- /app/assets/images/.directory: -------------------------------------------------------------------------------- 1 | [Dolphin] 2 | PreviewsShown=true 3 | Timestamp=2012,11,20,17,40,33 4 | -------------------------------------------------------------------------------- /app/assets/images/arch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/assets/images/arch.jpg -------------------------------------------------------------------------------- /app/assets/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/assets/images/favicon.ico -------------------------------------------------------------------------------- /app/assets/images/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/assets/images/loader.gif -------------------------------------------------------------------------------- /app/assets/images/no_avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/assets/images/no_avatar.png -------------------------------------------------------------------------------- /app/assets/images/rails.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/assets/images/rails.png -------------------------------------------------------------------------------- /app/assets/images/service_sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/assets/images/service_sample.png -------------------------------------------------------------------------------- /app/assets/javascripts/Chart.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/assets/javascripts/Chart.min.js -------------------------------------------------------------------------------- /app/assets/javascripts/application.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/assets/javascripts/application.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/build.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/assets/javascripts/build.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/pager.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/assets/javascripts/pager.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/projects.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/assets/javascripts/projects.js.coffee -------------------------------------------------------------------------------- /app/assets/stylesheets/application.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/assets/stylesheets/application.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/generic/avatar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/assets/stylesheets/generic/avatar.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/generic/buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/assets/stylesheets/generic/buttons.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/generic/callout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/assets/stylesheets/generic/callout.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/generic/common.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/assets/stylesheets/generic/common.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/generic/forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/assets/stylesheets/generic/forms.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/generic/tables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/assets/stylesheets/generic/tables.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/generic/typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/assets/stylesheets/generic/typography.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/generic/xterm.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/assets/stylesheets/generic/xterm.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/main/fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/assets/stylesheets/main/fonts.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/main/layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/assets/stylesheets/main/layout.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/main/mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/assets/stylesheets/main/mixins.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/main/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/assets/stylesheets/main/variables.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/sections/builds.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/assets/stylesheets/sections/builds.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/sections/lint.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/assets/stylesheets/sections/lint.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/sections/login.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/assets/stylesheets/sections/login.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/sections/navbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/assets/stylesheets/sections/navbar.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/sections/projects.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/assets/stylesheets/sections/projects.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/sections/runners.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/assets/stylesheets/sections/runners.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/sections/setup.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/assets/stylesheets/sections/setup.scss -------------------------------------------------------------------------------- /app/controllers/admin/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/controllers/admin/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/application_settings_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/controllers/admin/application_settings_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/builds_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/controllers/admin/builds_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/events_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/controllers/admin/events_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/projects_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/controllers/admin/projects_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/runner_projects_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/controllers/admin/runner_projects_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/runners_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/controllers/admin/runners_controller.rb -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/builds_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/controllers/builds_controller.rb -------------------------------------------------------------------------------- /app/controllers/charts_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/controllers/charts_controller.rb -------------------------------------------------------------------------------- /app/controllers/commits_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/controllers/commits_controller.rb -------------------------------------------------------------------------------- /app/controllers/events_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/controllers/events_controller.rb -------------------------------------------------------------------------------- /app/controllers/helps_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/controllers/helps_controller.rb -------------------------------------------------------------------------------- /app/controllers/lints_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/controllers/lints_controller.rb -------------------------------------------------------------------------------- /app/controllers/projects_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/controllers/projects_controller.rb -------------------------------------------------------------------------------- /app/controllers/runner_projects_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/controllers/runner_projects_controller.rb -------------------------------------------------------------------------------- /app/controllers/runners_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/controllers/runners_controller.rb -------------------------------------------------------------------------------- /app/controllers/services_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/controllers/services_controller.rb -------------------------------------------------------------------------------- /app/controllers/triggers_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/controllers/triggers_controller.rb -------------------------------------------------------------------------------- /app/controllers/user_sessions_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/controllers/user_sessions_controller.rb -------------------------------------------------------------------------------- /app/controllers/variables_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/controllers/variables_controller.rb -------------------------------------------------------------------------------- /app/controllers/web_hooks_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/controllers/web_hooks_controller.rb -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/helpers/application_helper.rb -------------------------------------------------------------------------------- /app/helpers/builds_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/helpers/builds_helper.rb -------------------------------------------------------------------------------- /app/helpers/commits_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/helpers/commits_helper.rb -------------------------------------------------------------------------------- /app/helpers/gitlab_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/helpers/gitlab_helper.rb -------------------------------------------------------------------------------- /app/helpers/icons_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/helpers/icons_helper.rb -------------------------------------------------------------------------------- /app/helpers/projects_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/helpers/projects_helper.rb -------------------------------------------------------------------------------- /app/helpers/routes_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/helpers/routes_helper.rb -------------------------------------------------------------------------------- /app/helpers/runners_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/helpers/runners_helper.rb -------------------------------------------------------------------------------- /app/helpers/triggers_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/helpers/triggers_helper.rb -------------------------------------------------------------------------------- /app/helpers/user_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/helpers/user_helper.rb -------------------------------------------------------------------------------- /app/helpers/user_sessions_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/helpers/user_sessions_helper.rb -------------------------------------------------------------------------------- /app/mailers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/mailers/emails/builds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/mailers/emails/builds.rb -------------------------------------------------------------------------------- /app/mailers/notify.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/mailers/notify.rb -------------------------------------------------------------------------------- /app/models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/application_setting.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/models/application_setting.rb -------------------------------------------------------------------------------- /app/models/build.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/models/build.rb -------------------------------------------------------------------------------- /app/models/commit.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/models/commit.rb -------------------------------------------------------------------------------- /app/models/event.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/models/event.rb -------------------------------------------------------------------------------- /app/models/network.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/models/network.rb -------------------------------------------------------------------------------- /app/models/project.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/models/project.rb -------------------------------------------------------------------------------- /app/models/project_services/hip_chat_message.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/models/project_services/hip_chat_message.rb -------------------------------------------------------------------------------- /app/models/project_services/hip_chat_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/models/project_services/hip_chat_service.rb -------------------------------------------------------------------------------- /app/models/project_services/mail_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/models/project_services/mail_service.rb -------------------------------------------------------------------------------- /app/models/project_services/slack_message.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/models/project_services/slack_message.rb -------------------------------------------------------------------------------- /app/models/project_services/slack_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/models/project_services/slack_service.rb -------------------------------------------------------------------------------- /app/models/project_status.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/models/project_status.rb -------------------------------------------------------------------------------- /app/models/runner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/models/runner.rb -------------------------------------------------------------------------------- /app/models/runner_project.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/models/runner_project.rb -------------------------------------------------------------------------------- /app/models/service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/models/service.rb -------------------------------------------------------------------------------- /app/models/trigger.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/models/trigger.rb -------------------------------------------------------------------------------- /app/models/trigger_request.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/models/trigger_request.rb -------------------------------------------------------------------------------- /app/models/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/models/user.rb -------------------------------------------------------------------------------- /app/models/user_session.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/models/user_session.rb -------------------------------------------------------------------------------- /app/models/variable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/models/variable.rb -------------------------------------------------------------------------------- /app/models/web_hook.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/models/web_hook.rb -------------------------------------------------------------------------------- /app/services/create_commit_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/services/create_commit_service.rb -------------------------------------------------------------------------------- /app/services/create_project_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/services/create_project_service.rb -------------------------------------------------------------------------------- /app/services/create_trigger_request_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/services/create_trigger_request_service.rb -------------------------------------------------------------------------------- /app/services/event_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/services/event_service.rb -------------------------------------------------------------------------------- /app/services/image_for_build_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/services/image_for_build_service.rb -------------------------------------------------------------------------------- /app/services/register_build_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/services/register_build_service.rb -------------------------------------------------------------------------------- /app/services/test_hook_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/services/test_hook_service.rb -------------------------------------------------------------------------------- /app/services/web_hook_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/services/web_hook_service.rb -------------------------------------------------------------------------------- /app/views/admin/application_settings/_form.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/views/admin/application_settings/_form.html.haml -------------------------------------------------------------------------------- /app/views/admin/application_settings/show.html.haml: -------------------------------------------------------------------------------- 1 | %h3.page-title Settings 2 | %hr 3 | = render 'form' 4 | -------------------------------------------------------------------------------- /app/views/admin/builds/_build.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/views/admin/builds/_build.html.haml -------------------------------------------------------------------------------- /app/views/admin/builds/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/views/admin/builds/index.html.haml -------------------------------------------------------------------------------- /app/views/admin/events/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/views/admin/events/index.html.haml -------------------------------------------------------------------------------- /app/views/admin/projects/_project.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/views/admin/projects/_project.html.haml -------------------------------------------------------------------------------- /app/views/admin/projects/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/views/admin/projects/index.html.haml -------------------------------------------------------------------------------- /app/views/admin/runner_projects/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/views/admin/runner_projects/index.html.haml -------------------------------------------------------------------------------- /app/views/admin/runners/_runner.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/views/admin/runners/_runner.html.haml -------------------------------------------------------------------------------- /app/views/admin/runners/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/views/admin/runners/index.html.haml -------------------------------------------------------------------------------- /app/views/admin/runners/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/views/admin/runners/show.html.haml -------------------------------------------------------------------------------- /app/views/admin/runners/update.js.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/views/admin/runners/update.js.haml -------------------------------------------------------------------------------- /app/views/builds/_build.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/views/builds/_build.html.haml -------------------------------------------------------------------------------- /app/views/builds/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/views/builds/show.html.haml -------------------------------------------------------------------------------- /app/views/charts/_build_times.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/views/charts/_build_times.haml -------------------------------------------------------------------------------- /app/views/charts/_builds.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/views/charts/_builds.haml -------------------------------------------------------------------------------- /app/views/charts/_overall.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/views/charts/_overall.haml -------------------------------------------------------------------------------- /app/views/charts/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/views/charts/show.html.haml -------------------------------------------------------------------------------- /app/views/commits/_commit.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/views/commits/_commit.html.haml -------------------------------------------------------------------------------- /app/views/commits/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/views/commits/show.html.haml -------------------------------------------------------------------------------- /app/views/errors/show.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/views/errors/show.haml -------------------------------------------------------------------------------- /app/views/events/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/views/events/index.html.haml -------------------------------------------------------------------------------- /app/views/helps/oauth2.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/views/helps/oauth2.html.haml -------------------------------------------------------------------------------- /app/views/helps/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/views/helps/show.html.haml -------------------------------------------------------------------------------- /app/views/kaminari/_first_page.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/views/kaminari/_first_page.html.haml -------------------------------------------------------------------------------- /app/views/kaminari/_gap.html.haml: -------------------------------------------------------------------------------- 1 | %li.disabled 2 | = link_to raw(t 'views.pagination.truncate'), '#' 3 | -------------------------------------------------------------------------------- /app/views/kaminari/_last_page.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/views/kaminari/_last_page.html.haml -------------------------------------------------------------------------------- /app/views/kaminari/_next_page.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/views/kaminari/_next_page.html.haml -------------------------------------------------------------------------------- /app/views/kaminari/_page.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/views/kaminari/_page.html.haml -------------------------------------------------------------------------------- /app/views/kaminari/_paginator.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/views/kaminari/_paginator.html.haml -------------------------------------------------------------------------------- /app/views/kaminari/_prev_page.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/views/kaminari/_prev_page.html.haml -------------------------------------------------------------------------------- /app/views/layouts/_head.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/views/layouts/_head.html.haml -------------------------------------------------------------------------------- /app/views/layouts/_info.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/views/layouts/_info.html.haml -------------------------------------------------------------------------------- /app/views/layouts/_nav.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/views/layouts/_nav.html.haml -------------------------------------------------------------------------------- /app/views/layouts/_nav_admin.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/views/layouts/_nav_admin.html.haml -------------------------------------------------------------------------------- /app/views/layouts/_nav_project.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/views/layouts/_nav_project.html.haml -------------------------------------------------------------------------------- /app/views/layouts/admin.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/views/layouts/admin.html.haml -------------------------------------------------------------------------------- /app/views/layouts/application.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/views/layouts/application.html.haml -------------------------------------------------------------------------------- /app/views/layouts/empty.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/views/layouts/empty.html.haml -------------------------------------------------------------------------------- /app/views/layouts/notify.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/views/layouts/notify.html.haml -------------------------------------------------------------------------------- /app/views/layouts/project.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/views/layouts/project.html.haml -------------------------------------------------------------------------------- /app/views/lints/_create.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/views/lints/_create.html.haml -------------------------------------------------------------------------------- /app/views/lints/create.js.haml: -------------------------------------------------------------------------------- 1 | :plain 2 | $(".results").html("#{escape_javascript(render "create")}") -------------------------------------------------------------------------------- /app/views/lints/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/views/lints/show.html.haml -------------------------------------------------------------------------------- /app/views/notify/build_fail_email.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/views/notify/build_fail_email.html.haml -------------------------------------------------------------------------------- /app/views/notify/build_fail_email.text.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/views/notify/build_fail_email.text.erb -------------------------------------------------------------------------------- /app/views/notify/build_success_email.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/views/notify/build_success_email.html.haml -------------------------------------------------------------------------------- /app/views/notify/build_success_email.text.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/views/notify/build_success_email.text.erb -------------------------------------------------------------------------------- /app/views/projects/_form.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/views/projects/_form.html.haml -------------------------------------------------------------------------------- /app/views/projects/_gl_projects.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/views/projects/_gl_projects.html.haml -------------------------------------------------------------------------------- /app/views/projects/_info.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/views/projects/_info.html.haml -------------------------------------------------------------------------------- /app/views/projects/_no_runners.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/views/projects/_no_runners.html.haml -------------------------------------------------------------------------------- /app/views/projects/_project.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/views/projects/_project.html.haml -------------------------------------------------------------------------------- /app/views/projects/_public.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/views/projects/_public.html.haml -------------------------------------------------------------------------------- /app/views/projects/_search.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/views/projects/_search.html.haml -------------------------------------------------------------------------------- /app/views/projects/edit.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/views/projects/edit.html.haml -------------------------------------------------------------------------------- /app/views/projects/gitlab.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/views/projects/gitlab.html.haml -------------------------------------------------------------------------------- /app/views/projects/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/views/projects/index.html.haml -------------------------------------------------------------------------------- /app/views/projects/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/views/projects/show.html.haml -------------------------------------------------------------------------------- /app/views/runners/_runner.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/views/runners/_runner.html.haml -------------------------------------------------------------------------------- /app/views/runners/_shared_runners.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/views/runners/_shared_runners.html.haml -------------------------------------------------------------------------------- /app/views/runners/_specific_runners.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/views/runners/_specific_runners.html.haml -------------------------------------------------------------------------------- /app/views/runners/edit.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/views/runners/edit.html.haml -------------------------------------------------------------------------------- /app/views/runners/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/views/runners/index.html.haml -------------------------------------------------------------------------------- /app/views/runners/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/views/runners/show.html.haml -------------------------------------------------------------------------------- /app/views/services/_form.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/views/services/_form.html.haml -------------------------------------------------------------------------------- /app/views/services/edit.html.haml: -------------------------------------------------------------------------------- 1 | = render 'form' 2 | -------------------------------------------------------------------------------- /app/views/services/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/views/services/index.html.haml -------------------------------------------------------------------------------- /app/views/shared/_guide.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/views/shared/_guide.html.haml -------------------------------------------------------------------------------- /app/views/shared/_no_runners.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/views/shared/_no_runners.html.haml -------------------------------------------------------------------------------- /app/views/triggers/_trigger.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/views/triggers/_trigger.html.haml -------------------------------------------------------------------------------- /app/views/triggers/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/views/triggers/index.html.haml -------------------------------------------------------------------------------- /app/views/user_sessions/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/views/user_sessions/new.html.haml -------------------------------------------------------------------------------- /app/views/user_sessions/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/views/user_sessions/show.html.haml -------------------------------------------------------------------------------- /app/views/variables/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/views/variables/show.html.haml -------------------------------------------------------------------------------- /app/views/web_hooks/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/views/web_hooks/index.html.haml -------------------------------------------------------------------------------- /app/workers/hip_chat_notifier_worker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/workers/hip_chat_notifier_worker.rb -------------------------------------------------------------------------------- /app/workers/slack_notifier_worker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/workers/slack_notifier_worker.rb -------------------------------------------------------------------------------- /app/workers/web_hook_worker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/app/workers/web_hook_worker.rb -------------------------------------------------------------------------------- /bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/bin/bundle -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/bin/rails -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/bin/rake -------------------------------------------------------------------------------- /bin/rspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/bin/rspec -------------------------------------------------------------------------------- /bin/spring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/bin/spring -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/config.ru -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/application.yml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/config/application.yml.example -------------------------------------------------------------------------------- /config/application.yml.example.development: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/config/application.yml.example.development -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/database.yml.mysql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/config/database.yml.mysql -------------------------------------------------------------------------------- /config/database.yml.postgresql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/config/database.yml.postgresql -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/initializers/1_settings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/config/initializers/1_settings.rb -------------------------------------------------------------------------------- /config/initializers/2_app.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/config/initializers/2_app.rb -------------------------------------------------------------------------------- /config/initializers/3_sidekiq.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/config/initializers/3_sidekiq.rb -------------------------------------------------------------------------------- /config/initializers/6_rack_profiler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/config/initializers/6_rack_profiler.rb -------------------------------------------------------------------------------- /config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /config/initializers/connection_fix.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/config/initializers/connection_fix.rb -------------------------------------------------------------------------------- /config/initializers/cookies_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/config/initializers/cookies_serializer.rb -------------------------------------------------------------------------------- /config/initializers/haml.rb: -------------------------------------------------------------------------------- 1 | Haml::Template.options[:ugly] = true 2 | -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /config/initializers/secret_token.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/config/initializers/secret_token.rb -------------------------------------------------------------------------------- /config/initializers/session_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/config/initializers/session_store.rb -------------------------------------------------------------------------------- /config/initializers/smtp_settings.rb.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/config/initializers/smtp_settings.rb.sample -------------------------------------------------------------------------------- /config/initializers/state_machine_patch.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/config/initializers/state_machine_patch.rb -------------------------------------------------------------------------------- /config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /config/locales/devise.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/config/locales/devise.en.yml -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/resque.yml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/config/resque.yml.example -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/config/routes.rb -------------------------------------------------------------------------------- /config/schedule.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/config/schedule.rb -------------------------------------------------------------------------------- /config/secrets.yml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/config/secrets.yml.example -------------------------------------------------------------------------------- /config/sidekiq.yml.example: -------------------------------------------------------------------------------- 1 | -- 2 | :concurrency: 5 -------------------------------------------------------------------------------- /config/unicorn.rb.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/config/unicorn.rb.example -------------------------------------------------------------------------------- /config/unicorn.rb.example.development: -------------------------------------------------------------------------------- 1 | worker_processes 2 2 | timeout 60 3 | -------------------------------------------------------------------------------- /db/migrate/20121004140911_create_projects.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/db/migrate/20121004140911_create_projects.rb -------------------------------------------------------------------------------- /db/migrate/20121004165038_create_builds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/db/migrate/20121004165038_create_builds.rb -------------------------------------------------------------------------------- /db/migrate/20121101091638_devise_create_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/db/migrate/20121101091638_devise_create_users.rb -------------------------------------------------------------------------------- /db/migrate/20121101121639_add_token_to_project.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/db/migrate/20121101121639_add_token_to_project.rb -------------------------------------------------------------------------------- /db/migrate/20121106143042_add_ref_functionality.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/db/migrate/20121106143042_add_ref_functionality.rb -------------------------------------------------------------------------------- /db/migrate/20121108160657_add_gitlab_url_to_project.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/db/migrate/20121108160657_add_gitlab_url_to_project.rb -------------------------------------------------------------------------------- /db/migrate/20121108174237_add_started_at_to_build.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/db/migrate/20121108174237_add_started_at_to_build.rb -------------------------------------------------------------------------------- /db/migrate/20121115094430_increate_trace_colunm_limit.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/db/migrate/20121115094430_increate_trace_colunm_limit.rb -------------------------------------------------------------------------------- /db/migrate/20121115132252_add_tmp_file_to_build.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/db/migrate/20121115132252_add_tmp_file_to_build.rb -------------------------------------------------------------------------------- /db/migrate/20121116144312_add_before_sha_to_build.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/db/migrate/20121116144312_add_before_sha_to_build.rb -------------------------------------------------------------------------------- /db/migrate/20121224092350_add_schedule_to_projects.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/db/migrate/20121224092350_add_schedule_to_projects.rb -------------------------------------------------------------------------------- /db/migrate/20130114153451_change_schedule_invertal.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/db/migrate/20130114153451_change_schedule_invertal.rb -------------------------------------------------------------------------------- /db/migrate/20130129121754_add_public_flag_to_project.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/db/migrate/20130129121754_add_public_flag_to_project.rb -------------------------------------------------------------------------------- /db/migrate/20130531112551_add_data_field_to_build.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/db/migrate/20130531112551_add_data_field_to_build.rb -------------------------------------------------------------------------------- /db/migrate/20130531122131_remove_path_field_from_project.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/db/migrate/20130531122131_remove_path_field_from_project.rb -------------------------------------------------------------------------------- /db/migrate/20130531125905_create_runners.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/db/migrate/20130531125905_create_runners.rb -------------------------------------------------------------------------------- /db/migrate/20130531133603_add_runner_id_to_build.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/db/migrate/20130531133603_add_runner_id_to_build.rb -------------------------------------------------------------------------------- /db/migrate/20130603130920_remove_users_table.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/db/migrate/20130603130920_remove_users_table.rb -------------------------------------------------------------------------------- /db/migrate/20130603144030_add_more_fields_to_project.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/db/migrate/20130603144030_add_more_fields_to_project.rb -------------------------------------------------------------------------------- /db/migrate/20130603144959_create_runner_projects.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/db/migrate/20130603144959_create_runner_projects.rb -------------------------------------------------------------------------------- /db/migrate/20130603161449_add_project_gitlab_id_to_project.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/db/migrate/20130603161449_add_project_gitlab_id_to_project.rb -------------------------------------------------------------------------------- /db/migrate/20130628142321_add_index_project_id_to_builds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/db/migrate/20130628142321_add_index_project_id_to_builds.rb -------------------------------------------------------------------------------- /db/migrate/20130705171042_add_description_to_runner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/db/migrate/20130705171042_add_description_to_runner.rb -------------------------------------------------------------------------------- /db/migrate/20130710164015_add_db_index.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/db/migrate/20130710164015_add_db_index.rb -------------------------------------------------------------------------------- /db/migrate/20130816201200_change_push_data_limit.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/db/migrate/20130816201200_change_push_data_limit.rb -------------------------------------------------------------------------------- /db/migrate/20130906175737_add_sessions_table.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/db/migrate/20130906175737_add_sessions_table.rb -------------------------------------------------------------------------------- /db/migrate/20131023103430_add_allow_git_fetch_to_project.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/db/migrate/20131023103430_add_allow_git_fetch_to_project.rb -------------------------------------------------------------------------------- /db/migrate/20131120155545_add_email_notification_fields_to_project.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/db/migrate/20131120155545_add_email_notification_fields_to_project.rb -------------------------------------------------------------------------------- /db/migrate/20140130121538_rename_project_fields.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/db/migrate/20140130121538_rename_project_fields.rb -------------------------------------------------------------------------------- /db/migrate/20140222210357_create_web_hook.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/db/migrate/20140222210357_create_web_hook.rb -------------------------------------------------------------------------------- /db/migrate/20140506091853_remove_public_key_from_runner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/db/migrate/20140506091853_remove_public_key_from_runner.rb -------------------------------------------------------------------------------- /db/migrate/20140823225019_create_commits_from_builds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/db/migrate/20140823225019_create_commits_from_builds.rb -------------------------------------------------------------------------------- /db/migrate/20140909142245_add_skip_refs_to_projects.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/db/migrate/20140909142245_add_skip_refs_to_projects.rb -------------------------------------------------------------------------------- /db/migrate/20141001125939_add_coverage_parser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/db/migrate/20141001125939_add_coverage_parser.rb -------------------------------------------------------------------------------- /db/migrate/20141001132129_add_coverage_to_build.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/db/migrate/20141001132129_add_coverage_to_build.rb -------------------------------------------------------------------------------- /db/migrate/20141028162820_add_sha_index_to_build.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/db/migrate/20141028162820_add_sha_index_to_build.rb -------------------------------------------------------------------------------- /db/migrate/20141031114419_migrate_build_to_commits.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/db/migrate/20141031114419_migrate_build_to_commits.rb -------------------------------------------------------------------------------- /db/migrate/20141031141708_add_commit_indicies.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/db/migrate/20141031141708_add_commit_indicies.rb -------------------------------------------------------------------------------- /db/migrate/20141103135037_add_parallel_to_build.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/db/migrate/20141103135037_add_parallel_to_build.rb -------------------------------------------------------------------------------- /db/migrate/20141103151359_add_commands_to_build.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/db/migrate/20141103151359_add_commands_to_build.rb -------------------------------------------------------------------------------- /db/migrate/20141103162726_add_job_id_to_build.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/db/migrate/20141103162726_add_job_id_to_build.rb -------------------------------------------------------------------------------- /db/migrate/20141104130024_migrate_jobs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/db/migrate/20141104130024_migrate_jobs.rb -------------------------------------------------------------------------------- /db/migrate/20141104153744_add_name_to_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/db/migrate/20141104153744_add_name_to_job.rb -------------------------------------------------------------------------------- /db/migrate/20141127153745_remove_scripts_from_project.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/db/migrate/20141127153745_remove_scripts_from_project.rb -------------------------------------------------------------------------------- /db/migrate/20141201153755_remove_invalid_build.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/db/migrate/20141201153755_remove_invalid_build.rb -------------------------------------------------------------------------------- /db/migrate/20141204133321_create_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/db/migrate/20141204133321_create_service.rb -------------------------------------------------------------------------------- /db/migrate/20150111062026_add_filter_to_jobs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/db/migrate/20150111062026_add_filter_to_jobs.rb -------------------------------------------------------------------------------- /db/migrate/20150113001832_acts_as_taggable_on_migration.acts_as_taggable_on_engine.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/db/migrate/20150113001832_acts_as_taggable_on_migration.acts_as_taggable_on_engine.rb -------------------------------------------------------------------------------- /db/migrate/20150113001833_add_missing_unique_indices.acts_as_taggable_on_engine.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/db/migrate/20150113001833_add_missing_unique_indices.acts_as_taggable_on_engine.rb -------------------------------------------------------------------------------- /db/migrate/20150113001834_add_taggings_counter_cache_to_tags.acts_as_taggable_on_engine.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/db/migrate/20150113001834_add_taggings_counter_cache_to_tags.acts_as_taggable_on_engine.rb -------------------------------------------------------------------------------- /db/migrate/20150113001835_add_missing_taggable_index.acts_as_taggable_on_engine.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/db/migrate/20150113001835_add_missing_taggable_index.acts_as_taggable_on_engine.rb -------------------------------------------------------------------------------- /db/migrate/20150204001035_build_missing_services.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/db/migrate/20150204001035_build_missing_services.rb -------------------------------------------------------------------------------- /db/migrate/20150226001835_add_job_type_to_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/db/migrate/20150226001835_add_job_type_to_job.rb -------------------------------------------------------------------------------- /db/migrate/20150306131416_add_contacted_at_to_runner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/db/migrate/20150306131416_add_contacted_at_to_runner.rb -------------------------------------------------------------------------------- /db/migrate/20150306135341_add_active_to_runner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/db/migrate/20150306135341_add_active_to_runner.rb -------------------------------------------------------------------------------- /db/migrate/20150310001733_rename_committer_to_pusher.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/db/migrate/20150310001733_rename_committer_to_pusher.rb -------------------------------------------------------------------------------- /db/migrate/20150320001810_create_event_table.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/db/migrate/20150320001810_create_event_table.rb -------------------------------------------------------------------------------- /db/migrate/20150324001123_add_settings_for_shared_runners.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/db/migrate/20150324001123_add_settings_for_shared_runners.rb -------------------------------------------------------------------------------- /db/migrate/20150324001227_migrate_shared_runners.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/db/migrate/20150324001227_migrate_shared_runners.rb -------------------------------------------------------------------------------- /db/migrate/20150330001111_disable_shared_runners.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/db/migrate/20150330001111_disable_shared_runners.rb -------------------------------------------------------------------------------- /db/migrate/20150415142013_add_deleted_at_to_jobs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/db/migrate/20150415142013_add_deleted_at_to_jobs.rb -------------------------------------------------------------------------------- /db/migrate/20150417000045_cleanup_the_build_model.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/db/migrate/20150417000045_cleanup_the_build_model.rb -------------------------------------------------------------------------------- /db/migrate/20150504010150_migrate_url_to_path.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/db/migrate/20150504010150_migrate_url_to_path.rb -------------------------------------------------------------------------------- /db/migrate/20150504010250_rename_gitlab_url_to_path.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/db/migrate/20150504010250_rename_gitlab_url_to_path.rb -------------------------------------------------------------------------------- /db/migrate/20150508011360_add_info_fields_to_runner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/db/migrate/20150508011360_add_info_fields_to_runner.rb -------------------------------------------------------------------------------- /db/migrate/20150528011001_add_fields_to_builds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/db/migrate/20150528011001_add_fields_to_builds.rb -------------------------------------------------------------------------------- /db/migrate/20150528011012_move_job_name_to_build.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/db/migrate/20150528011012_move_job_name_to_build.rb -------------------------------------------------------------------------------- /db/migrate/20150529012113_add_tag_to_commits.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/db/migrate/20150529012113_add_tag_to_commits.rb -------------------------------------------------------------------------------- /db/migrate/20150601043220_add_yaml_to_projects.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/db/migrate/20150601043220_add_yaml_to_projects.rb -------------------------------------------------------------------------------- /db/migrate/20150601043231_migrate_jobs_to_yaml.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/db/migrate/20150601043231_migrate_jobs_to_yaml.rb -------------------------------------------------------------------------------- /db/migrate/20150602000240_change_default_build_timeout.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/db/migrate/20150602000240_change_default_build_timeout.rb -------------------------------------------------------------------------------- /db/migrate/20150605002131_create_variables.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/db/migrate/20150605002131_create_variables.rb -------------------------------------------------------------------------------- /db/migrate/20150616001155_add_errors_to_commit.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/db/migrate/20150616001155_add_errors_to_commit.rb -------------------------------------------------------------------------------- /db/migrate/20150630091815_add_options_to_build.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/db/migrate/20150630091815_add_options_to_build.rb -------------------------------------------------------------------------------- /db/migrate/20150703125244_add_encrypted_value_to_variables.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/db/migrate/20150703125244_add_encrypted_value_to_variables.rb -------------------------------------------------------------------------------- /db/migrate/20150703125325_encrypt_variables.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/db/migrate/20150703125325_encrypt_variables.rb -------------------------------------------------------------------------------- /db/migrate/20150707134456_add_allow_failure_to_builds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/db/migrate/20150707134456_add_allow_failure_to_builds.rb -------------------------------------------------------------------------------- /db/migrate/20150710113836_add_job_type_to_builds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/db/migrate/20150710113836_add_job_type_to_builds.rb -------------------------------------------------------------------------------- /db/migrate/20150710113851_migrate_deploy_to_job_type_for_builds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/db/migrate/20150710113851_migrate_deploy_to_job_type_for_builds.rb -------------------------------------------------------------------------------- /db/migrate/20150721204649_truncate_sessions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/db/migrate/20150721204649_truncate_sessions.rb -------------------------------------------------------------------------------- /db/migrate/20150729145246_create_application_settings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/db/migrate/20150729145246_create_application_settings.rb -------------------------------------------------------------------------------- /db/migrate/20150803142346_rename_job_type_to_stage_builds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/db/migrate/20150803142346_rename_job_type_to_stage_builds.rb -------------------------------------------------------------------------------- /db/migrate/20150806091503_add_committed_at_to_commits.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/db/migrate/20150806091503_add_committed_at_to_commits.rb -------------------------------------------------------------------------------- /db/migrate/20150806091655_update_committed_at_with_created_at.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/db/migrate/20150806091655_update_committed_at_with_created_at.rb -------------------------------------------------------------------------------- /db/migrate/20150806102222_create_trigger.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/db/migrate/20150806102222_create_trigger.rb -------------------------------------------------------------------------------- /db/migrate/20150806102457_add_trigger_to_builds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/db/migrate/20150806102457_add_trigger_to_builds.rb -------------------------------------------------------------------------------- /db/migrate/20150806105404_create_trigger_request.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/db/migrate/20150806105404_create_trigger_request.rb -------------------------------------------------------------------------------- /db/migrate/20150819162227_add_commit_id_to_trigger_requests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/db/migrate/20150819162227_add_commit_id_to_trigger_requests.rb -------------------------------------------------------------------------------- /db/migrate/20150824202238_add_index_for_committed_at_and_id.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/db/migrate/20150824202238_add_index_for_committed_at_and_id.rb -------------------------------------------------------------------------------- /db/migrate/20150914102123_migrate_ci_tables.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/db/migrate/20150914102123_migrate_ci_tables.rb -------------------------------------------------------------------------------- /db/migrate/20150921081619_rename_taggings_idx.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/db/migrate/20150921081619_rename_taggings_idx.rb -------------------------------------------------------------------------------- /db/migrate/limits_to_mysql.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/db/migrate/limits_to_mysql.rb -------------------------------------------------------------------------------- /db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/db/schema.rb -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/doc/README.md -------------------------------------------------------------------------------- /doc/api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/doc/api/README.md -------------------------------------------------------------------------------- /doc/api/builds.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/doc/api/builds.md -------------------------------------------------------------------------------- /doc/api/commits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/doc/api/commits.md -------------------------------------------------------------------------------- /doc/api/forks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/doc/api/forks.md -------------------------------------------------------------------------------- /doc/api/projects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/doc/api/projects.md -------------------------------------------------------------------------------- /doc/api/runners.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/doc/api/runners.md -------------------------------------------------------------------------------- /doc/deployment/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/doc/deployment/README.md -------------------------------------------------------------------------------- /doc/docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/doc/docker/README.md -------------------------------------------------------------------------------- /doc/docker/using_docker_build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/doc/docker/using_docker_build.md -------------------------------------------------------------------------------- /doc/docker/using_docker_images.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/doc/docker/using_docker_images.md -------------------------------------------------------------------------------- /doc/examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/doc/examples/README.md -------------------------------------------------------------------------------- /doc/examples/test-and-deploy-python-application-to-heroku.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/doc/examples/test-and-deploy-python-application-to-heroku.md -------------------------------------------------------------------------------- /doc/examples/test-and-deploy-ruby-application-to-heroku.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/doc/examples/test-and-deploy-ruby-application-to-heroku.md -------------------------------------------------------------------------------- /doc/examples/test-clojure-application.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/doc/examples/test-clojure-application.md -------------------------------------------------------------------------------- /doc/install/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/doc/install/README.md -------------------------------------------------------------------------------- /doc/install/requirements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/doc/install/requirements.md -------------------------------------------------------------------------------- /doc/migration_to_omnibus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/doc/migration_to_omnibus/README.md -------------------------------------------------------------------------------- /doc/permissions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/doc/permissions/README.md -------------------------------------------------------------------------------- /doc/quick_start/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/doc/quick_start/README.md -------------------------------------------------------------------------------- /doc/quick_start/build_status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/doc/quick_start/build_status.png -------------------------------------------------------------------------------- /doc/quick_start/commit_status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/doc/quick_start/commit_status.png -------------------------------------------------------------------------------- /doc/quick_start/new_commit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/doc/quick_start/new_commit.png -------------------------------------------------------------------------------- /doc/quick_start/projects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/doc/quick_start/projects.png -------------------------------------------------------------------------------- /doc/quick_start/runners.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/doc/quick_start/runners.png -------------------------------------------------------------------------------- /doc/quick_start/runners_activated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/doc/quick_start/runners_activated.png -------------------------------------------------------------------------------- /doc/raketasks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/doc/raketasks/README.md -------------------------------------------------------------------------------- /doc/raketasks/backup_restore.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/doc/raketasks/backup_restore.md -------------------------------------------------------------------------------- /doc/runners/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/doc/runners/README.md -------------------------------------------------------------------------------- /doc/runners/project_specific.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/doc/runners/project_specific.png -------------------------------------------------------------------------------- /doc/runners/shared_runner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/doc/runners/shared_runner.png -------------------------------------------------------------------------------- /doc/runners/shared_to_specific_admin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/doc/runners/shared_to_specific_admin.png -------------------------------------------------------------------------------- /doc/update/3.0-to-3.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/doc/update/3.0-to-3.1.md -------------------------------------------------------------------------------- /doc/update/3.1-to-3.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/doc/update/3.1-to-3.2.md -------------------------------------------------------------------------------- /doc/update/3.2-to-4.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/doc/update/3.2-to-4.0.md -------------------------------------------------------------------------------- /doc/update/4.0-to-4.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/doc/update/4.0-to-4.1.md -------------------------------------------------------------------------------- /doc/update/4.1-to-4.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/doc/update/4.1-to-4.2.md -------------------------------------------------------------------------------- /doc/update/4.2-to-4.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/doc/update/4.2-to-4.3.md -------------------------------------------------------------------------------- /doc/update/4.3-to-5.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/doc/update/4.3-to-5.0.md -------------------------------------------------------------------------------- /doc/update/5.0-to-5.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/doc/update/5.0-to-5.1.md -------------------------------------------------------------------------------- /doc/update/5.1-to-5.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/doc/update/5.1-to-5.2.md -------------------------------------------------------------------------------- /doc/update/5.2-to-5.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/doc/update/5.2-to-5.3.md -------------------------------------------------------------------------------- /doc/update/5.3-to-5.4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/doc/update/5.3-to-5.4.md -------------------------------------------------------------------------------- /doc/update/5.4-to-7.8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/doc/update/5.4-to-7.8.md -------------------------------------------------------------------------------- /doc/update/7.10-to-7.11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/doc/update/7.10-to-7.11.md -------------------------------------------------------------------------------- /doc/update/7.11-to-7.12.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/doc/update/7.11-to-7.12.md -------------------------------------------------------------------------------- /doc/update/7.12-to-7.13.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/doc/update/7.12-to-7.13.md -------------------------------------------------------------------------------- /doc/update/7.13-to-7.14.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/doc/update/7.13-to-7.14.md -------------------------------------------------------------------------------- /doc/update/7.14-to-8.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/doc/update/7.14-to-8.0.md -------------------------------------------------------------------------------- /doc/update/7.8-to-7.9.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/doc/update/7.8-to-7.9.md -------------------------------------------------------------------------------- /doc/update/7.9-to-7.10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/doc/update/7.9-to-7.10.md -------------------------------------------------------------------------------- /doc/update/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/doc/update/README.md -------------------------------------------------------------------------------- /doc/update/patch_versions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/doc/update/patch_versions.md -------------------------------------------------------------------------------- /doc/variables/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/doc/variables/README.md -------------------------------------------------------------------------------- /doc/yaml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/doc/yaml/README.md -------------------------------------------------------------------------------- /lib/ansi2html.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/lib/ansi2html.rb -------------------------------------------------------------------------------- /lib/api/api.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/lib/api/api.rb -------------------------------------------------------------------------------- /lib/api/builds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/lib/api/builds.rb -------------------------------------------------------------------------------- /lib/api/commits.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/lib/api/commits.rb -------------------------------------------------------------------------------- /lib/api/entities.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/lib/api/entities.rb -------------------------------------------------------------------------------- /lib/api/forks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/lib/api/forks.rb -------------------------------------------------------------------------------- /lib/api/helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/lib/api/helpers.rb -------------------------------------------------------------------------------- /lib/api/projects.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/lib/api/projects.rb -------------------------------------------------------------------------------- /lib/api/runners.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/lib/api/runners.rb -------------------------------------------------------------------------------- /lib/api/triggers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/lib/api/triggers.rb -------------------------------------------------------------------------------- /lib/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/backup/builds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/lib/backup/builds.rb -------------------------------------------------------------------------------- /lib/backup/database.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/lib/backup/database.rb -------------------------------------------------------------------------------- /lib/backup/manager.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/lib/backup/manager.rb -------------------------------------------------------------------------------- /lib/charts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/lib/charts.rb -------------------------------------------------------------------------------- /lib/current_settings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/lib/current_settings.rb -------------------------------------------------------------------------------- /lib/git.rb: -------------------------------------------------------------------------------- 1 | module Git 2 | BLANK_SHA = '0' * 40 3 | end 4 | -------------------------------------------------------------------------------- /lib/gitlab_ci_yaml_processor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/lib/gitlab_ci_yaml_processor.rb -------------------------------------------------------------------------------- /lib/scheduler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/lib/scheduler.rb -------------------------------------------------------------------------------- /lib/static_model.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/lib/static_model.rb -------------------------------------------------------------------------------- /lib/support/init.d/gitlab_ci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/lib/support/init.d/gitlab_ci -------------------------------------------------------------------------------- /lib/support/init.d/gitlab_ci.default.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/lib/support/init.d/gitlab_ci.default.example -------------------------------------------------------------------------------- /lib/support/mysql-postgresql-converter/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/lib/support/mysql-postgresql-converter/LICENSE -------------------------------------------------------------------------------- /lib/support/mysql-postgresql-converter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/lib/support/mysql-postgresql-converter/README.md -------------------------------------------------------------------------------- /lib/support/mysql-postgresql-converter/db_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/lib/support/mysql-postgresql-converter/db_converter.py -------------------------------------------------------------------------------- /lib/support/mysql-postgresql-converter/splice_drop_indexes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/lib/support/mysql-postgresql-converter/splice_drop_indexes -------------------------------------------------------------------------------- /lib/support/nginx/gitlab_ci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/lib/support/nginx/gitlab_ci -------------------------------------------------------------------------------- /lib/tasks/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tasks/add_limits_mysql.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/lib/tasks/add_limits_mysql.rake -------------------------------------------------------------------------------- /lib/tasks/backup.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/lib/tasks/backup.rake -------------------------------------------------------------------------------- /lib/tasks/brakeman.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/lib/tasks/brakeman.rake -------------------------------------------------------------------------------- /lib/tasks/cache.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/lib/tasks/cache.rake -------------------------------------------------------------------------------- /lib/tasks/cleanup.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/lib/tasks/cleanup.rake -------------------------------------------------------------------------------- /lib/tasks/info.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/lib/tasks/info.rake -------------------------------------------------------------------------------- /lib/tasks/schedule_builds.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/lib/tasks/schedule_builds.rake -------------------------------------------------------------------------------- /lib/tasks/setup.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/lib/tasks/setup.rake -------------------------------------------------------------------------------- /lib/tasks/sidekiq.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/lib/tasks/sidekiq.rake -------------------------------------------------------------------------------- /lib/upgrader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/lib/upgrader.rb -------------------------------------------------------------------------------- /lib/version_info.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/lib/version_info.rb -------------------------------------------------------------------------------- /public/.directory: -------------------------------------------------------------------------------- 1 | [Dolphin] 2 | PreviewsShown=true 3 | Timestamp=2013,4,9,9,32,42 4 | Version=3 5 | -------------------------------------------------------------------------------- /public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/public/404.html -------------------------------------------------------------------------------- /public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/public/422.html -------------------------------------------------------------------------------- /public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/public/500.html -------------------------------------------------------------------------------- /public/build-canceled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/public/build-canceled.svg -------------------------------------------------------------------------------- /public/build-failed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/public/build-failed.svg -------------------------------------------------------------------------------- /public/build-pending.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/public/build-pending.svg -------------------------------------------------------------------------------- /public/build-running.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/public/build-running.svg -------------------------------------------------------------------------------- /public/build-skipped.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/public/build-skipped.svg -------------------------------------------------------------------------------- /public/build-success.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/public/build-success.svg -------------------------------------------------------------------------------- /public/build-unknown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/public/build-unknown.svg -------------------------------------------------------------------------------- /public/deploy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/public/deploy.html -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/gitlab-ci-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/public/gitlab-ci-screenshot.png -------------------------------------------------------------------------------- /public/gitlab_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/public/gitlab_logo.png -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/public/robots.txt -------------------------------------------------------------------------------- /public/static.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/public/static.css -------------------------------------------------------------------------------- /script/background_jobs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/script/background_jobs -------------------------------------------------------------------------------- /script/prepare_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/script/prepare_build.sh -------------------------------------------------------------------------------- /script/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/script/rails -------------------------------------------------------------------------------- /script/upgrade.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/script/upgrade.rb -------------------------------------------------------------------------------- /script/web: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/script/web -------------------------------------------------------------------------------- /spec/controllers/commits_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/spec/controllers/commits_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/projects_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/spec/controllers/projects_controller_spec.rb -------------------------------------------------------------------------------- /spec/factories/builds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/spec/factories/builds.rb -------------------------------------------------------------------------------- /spec/factories/commits.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/spec/factories/commits.rb -------------------------------------------------------------------------------- /spec/factories/events.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/spec/factories/events.rb -------------------------------------------------------------------------------- /spec/factories/projects.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/spec/factories/projects.rb -------------------------------------------------------------------------------- /spec/factories/runner_projects.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/spec/factories/runner_projects.rb -------------------------------------------------------------------------------- /spec/factories/runners.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/spec/factories/runners.rb -------------------------------------------------------------------------------- /spec/factories/trigger_requests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/spec/factories/trigger_requests.rb -------------------------------------------------------------------------------- /spec/factories/triggers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/spec/factories/triggers.rb -------------------------------------------------------------------------------- /spec/factories/users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/spec/factories/users.rb -------------------------------------------------------------------------------- /spec/factories/web_hook.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/spec/factories/web_hook.rb -------------------------------------------------------------------------------- /spec/features/admin/builds_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/spec/features/admin/builds_spec.rb -------------------------------------------------------------------------------- /spec/features/admin/events_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/spec/features/admin/events_spec.rb -------------------------------------------------------------------------------- /spec/features/admin/projects_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/spec/features/admin/projects_spec.rb -------------------------------------------------------------------------------- /spec/features/admin/runners_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/spec/features/admin/runners_spec.rb -------------------------------------------------------------------------------- /spec/features/builds_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/spec/features/builds_spec.rb -------------------------------------------------------------------------------- /spec/features/commits_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/spec/features/commits_spec.rb -------------------------------------------------------------------------------- /spec/features/events_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/spec/features/events_spec.rb -------------------------------------------------------------------------------- /spec/features/lint_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/spec/features/lint_spec.rb -------------------------------------------------------------------------------- /spec/features/projects_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/spec/features/projects_spec.rb -------------------------------------------------------------------------------- /spec/features/runners_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/spec/features/runners_spec.rb -------------------------------------------------------------------------------- /spec/features/triggers_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/spec/features/triggers_spec.rb -------------------------------------------------------------------------------- /spec/features/variables_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/spec/features/variables_spec.rb -------------------------------------------------------------------------------- /spec/helpers/application_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/spec/helpers/application_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/runners_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/spec/helpers/runners_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/user_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/spec/helpers/user_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/user_sessions_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/spec/helpers/user_sessions_helper_spec.rb -------------------------------------------------------------------------------- /spec/lib/ansi2html_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/spec/lib/ansi2html_spec.rb -------------------------------------------------------------------------------- /spec/lib/charts_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/spec/lib/charts_spec.rb -------------------------------------------------------------------------------- /spec/lib/gitlab_ci_yaml_processor_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/spec/lib/gitlab_ci_yaml_processor_spec.rb -------------------------------------------------------------------------------- /spec/lib/upgrader_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/spec/lib/upgrader_spec.rb -------------------------------------------------------------------------------- /spec/mailers/notify_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/spec/mailers/notify_spec.rb -------------------------------------------------------------------------------- /spec/models/build_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/spec/models/build_spec.rb -------------------------------------------------------------------------------- /spec/models/commit_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/spec/models/commit_spec.rb -------------------------------------------------------------------------------- /spec/models/mail_service_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/spec/models/mail_service_spec.rb -------------------------------------------------------------------------------- /spec/models/network_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/spec/models/network_spec.rb -------------------------------------------------------------------------------- /spec/models/project_services/hip_chat_message_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/spec/models/project_services/hip_chat_message_spec.rb -------------------------------------------------------------------------------- /spec/models/project_services/hip_chat_service_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/spec/models/project_services/hip_chat_service_spec.rb -------------------------------------------------------------------------------- /spec/models/project_services/slack_message_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/spec/models/project_services/slack_message_spec.rb -------------------------------------------------------------------------------- /spec/models/project_services/slack_service_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/spec/models/project_services/slack_service_spec.rb -------------------------------------------------------------------------------- /spec/models/project_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/spec/models/project_spec.rb -------------------------------------------------------------------------------- /spec/models/runner_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/spec/models/runner_spec.rb -------------------------------------------------------------------------------- /spec/models/service_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/spec/models/service_spec.rb -------------------------------------------------------------------------------- /spec/models/trigger_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/spec/models/trigger_spec.rb -------------------------------------------------------------------------------- /spec/models/user_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/spec/models/user_spec.rb -------------------------------------------------------------------------------- /spec/models/variable_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/spec/models/variable_spec.rb -------------------------------------------------------------------------------- /spec/models/web_hook_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/spec/models/web_hook_spec.rb -------------------------------------------------------------------------------- /spec/requests/api/builds_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/spec/requests/api/builds_spec.rb -------------------------------------------------------------------------------- /spec/requests/api/commits_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/spec/requests/api/commits_spec.rb -------------------------------------------------------------------------------- /spec/requests/api/forks_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/spec/requests/api/forks_spec.rb -------------------------------------------------------------------------------- /spec/requests/api/projects_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/spec/requests/api/projects_spec.rb -------------------------------------------------------------------------------- /spec/requests/api/runners_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/spec/requests/api/runners_spec.rb -------------------------------------------------------------------------------- /spec/requests/api/triggers_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/spec/requests/api/triggers_spec.rb -------------------------------------------------------------------------------- /spec/requests/builds_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/spec/requests/builds_spec.rb -------------------------------------------------------------------------------- /spec/requests/commits_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/spec/requests/commits_spec.rb -------------------------------------------------------------------------------- /spec/services/create_commit_service_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/spec/services/create_commit_service_spec.rb -------------------------------------------------------------------------------- /spec/services/create_project_service_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/spec/services/create_project_service_spec.rb -------------------------------------------------------------------------------- /spec/services/create_trigger_request_service_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/spec/services/create_trigger_request_service_spec.rb -------------------------------------------------------------------------------- /spec/services/event_service_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/spec/services/event_service_spec.rb -------------------------------------------------------------------------------- /spec/services/image_for_build_service_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/spec/services/image_for_build_service_spec.rb -------------------------------------------------------------------------------- /spec/services/register_build_service_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/spec/services/register_build_service_spec.rb -------------------------------------------------------------------------------- /spec/services/web_hook_service_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/spec/services/web_hook_service_spec.rb -------------------------------------------------------------------------------- /spec/six.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/spec/six.tar.gz -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/api_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/spec/support/api_helpers.rb -------------------------------------------------------------------------------- /spec/support/capybara.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/spec/support/capybara.rb -------------------------------------------------------------------------------- /spec/support/db_cleaner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/spec/support/db_cleaner.rb -------------------------------------------------------------------------------- /spec/support/gitlab_stubs/gitlab_ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/spec/support/gitlab_stubs/gitlab_ci.yml -------------------------------------------------------------------------------- /spec/support/gitlab_stubs/project_8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/spec/support/gitlab_stubs/project_8.json -------------------------------------------------------------------------------- /spec/support/gitlab_stubs/project_8_hooks.json: -------------------------------------------------------------------------------- 1 | [{}] 2 | -------------------------------------------------------------------------------- /spec/support/gitlab_stubs/projects.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/spec/support/gitlab_stubs/projects.json -------------------------------------------------------------------------------- /spec/support/gitlab_stubs/raw_project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/spec/support/gitlab_stubs/raw_project.yml -------------------------------------------------------------------------------- /spec/support/gitlab_stubs/session.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/spec/support/gitlab_stubs/session.json -------------------------------------------------------------------------------- /spec/support/gitlab_stubs/user.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/spec/support/gitlab_stubs/user.json -------------------------------------------------------------------------------- /spec/support/login_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/spec/support/login_helpers.rb -------------------------------------------------------------------------------- /spec/support/monkey_patches/oauth2.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/spec/support/monkey_patches/oauth2.rb -------------------------------------------------------------------------------- /spec/support/setup_builds_storage.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/spec/support/setup_builds_storage.rb -------------------------------------------------------------------------------- /spec/support/stub_gitlab_calls.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/spec/support/stub_gitlab_calls.rb -------------------------------------------------------------------------------- /spec/support/stub_gitlab_data.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/spec/support/stub_gitlab_data.rb -------------------------------------------------------------------------------- /spec/support/webmock.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/spec/support/webmock.rb -------------------------------------------------------------------------------- /vendor/assets/javascripts/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/assets/javascripts/jquery.endless-scroll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/gitlab-ci/HEAD/vendor/assets/javascripts/jquery.endless-scroll.js -------------------------------------------------------------------------------- /vendor/assets/stylesheets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/plugins/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------