Gitlab: Difference between revisions
Jump to navigation
Jump to search
(→CI) |
|||
Line 8: | Line 8: | ||
* https://dev.to/hypnoglow/how-to-make-friends-with-golang-docker-and-gitlab-ci-4bil | * https://dev.to/hypnoglow/how-to-make-friends-with-golang-docker-and-gitlab-ci-4bil | ||
* https://docs.gitlab.com/ee/ci/variables/ | * https://docs.gitlab.com/ee/ci/variables/ | ||
== See also == | |||
* https://www.youtube.com/watch?v=Nj6dqU7u0CI - GitLab CI/CD with Kubernetes | |||
[[category:version control]] | [[category:version control]] |
Revision as of 06:48, 14 August 2019
Overview
Gitlab 내용 정리
.gitlab-ci.yml
.gitlab-ci.yml 파일은 gitlab 에서 CI/CD pipeline 을 구성할 때 사용하는 configuration file 이다. 이 파일이 프로젝트(Repository) 최상단 디렉토리에 위치하고 있으면 gitlab에서는 이를 자동으로 읽어들인다.
- https://docs.gitlab.com/ee/ci/yaml/
- https://dev.to/hypnoglow/how-to-make-friends-with-golang-docker-and-gitlab-ci-4bil
- https://docs.gitlab.com/ee/ci/variables/
See also
- https://www.youtube.com/watch?v=Nj6dqU7u0CI - GitLab CI/CD with Kubernetes