Winnie Hellmann
2019-04-23
Winnie Hellmann
2019-04-23
https://about.gitlab.com/handbook/communication/#everything-starts-with-an-issue
https://docs.gitlab.com/ee/user/project/description_templates.html
https://docs.gitlab.com/ee/development/contributing/issue_workflow.html
https://about.gitlab.com/handbook/engineering/workflow/#scheduling-issues
https://docs.gitlab.com/ee/user/project/issues/issue_data_and_actions.html#3-assignee
https://docs.gitlab.com/ee/user/project/issues/multiple_assignees_for_issues.html
https://docs.gitlab.com/ee/user/profile/preferences.html#default-dashboard https://gitlab.com/gitlab-org/gitlab-ce/issues/60755
https://about.gitlab.com/handbook/engineering/workflow/
https://docs.gitlab.com/ee/user/project/labels.html#scoped-labels-premium
$ git push
Enumerating objects: 87, done.
Counting objects: 100% (87/87), done.
Delta compression using up to 12 threads
Compressing objects: 100% (53/53), done.
Writing objects: 100% (53/53), 5.08 KiB | 69.00 KiB/s, done.
Total 53 (delta 48), reused 0 (delta 0)
remote:
remote: To create a merge request for winh-simplify-frontend-fixtures, visit:
remote: https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/new?merge_request%5Bsource_branch%5D=winh-simplify-frontend-fixtures
remote:
https://docs.gitlab.com/ee/development/code_review.html
https://docs.gitlab.com/ee/user/discussions/#merge-request-reviews-premium
.gitlab-ci.yml
mein job:
stage: test
script:
- echo "Nichts tun."
dein job:
stage: deploy
script:
- echo "Viel tun."
git push
erzeugt eine neue Pipelinebuild:
- review-docs-deploy-manual
prepare:
- compile-assets
- retrieve-tests-metadata
- setup-test-env
test:
- cache gems
- code_quality
- db:check-schema-pg
- db:migrate:reset-mysql
- db:migrate:reset-pg
- db:rollback-mysql
- db:rollback-pg
- dependency_scanning
- docs lint
- gitlab:assets:compile
- gitlab:setup-mysql
- gitlab:setup-pg
- gitlab_git_test
- jest
- karma
- migration:path-mysql
- migration:path-pg
- no_ee_check
- package-and-qa
- qa-frontend-node:8
- qa-frontend-node:10
- qa-frontend-node:latest
- qa:internal
- qa:selectors
- rspec-fast-spec-helper
- rspec-mysql
- rspec-mysql-quarantine
- rspec-pg
- rspec-pg-/50
- rspec-pg-quarantine
- sast
- static-analysis
post-test:
- coverage
- jsdoc
- lint:javascript:report
- update-tests-metadata
pages:
- pages
post-cleanup:
- review-docs-cleanup
deploy:
- pages:deploy
image: "dev.gitlab.org:5005/gitlab/gitlab-build-images:ruby-2.5.3-golang-1.11-git-2.21-chrome-71.0-node-10.x-yarn-1.12-postgresql-9.6-graphicsmagick-1.3.29"
# ...
include:
- local: .gitlab/ci/global.gitlab-ci.yml
- local: .gitlab/ci/cng.gitlab-ci.yml
- local: .gitlab/ci/docs.gitlab-ci.yml
- local: .gitlab/ci/frontend.gitlab-ci.yml
- local: .gitlab/ci/pages.gitlab-ci.yml
- local: .gitlab/ci/qa.gitlab-ci.yml
- local: .gitlab/ci/reports.gitlab-ci.yml
- local: .gitlab/ci/rails.gitlab-ci.yml
- local: .gitlab/ci/review.gitlab-ci.yml
- local: .gitlab/ci/setup.gitlab-ci.yml
- local: .gitlab/ci/test-metadata.gitlab-ci.yml
https://gitlab.com/gitlab-org/gitlab-ce/blob/master/.gitlab-ci.yml
später gerne an:
winnie(🐒)gitlab📍com