Gitlab: Difference between revisions
Jump to navigation
Jump to search
(→CI) |
(→CI) |
||
Line 2: | Line 2: | ||
Gitlab 내용 정리 | 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://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/ | ||
[[category:version control]] | [[category:version control]] |
Revision as of 06:37, 14 August 2019
Overview
Gitlab 내용 정리
.gitlab-ci.yml
.gitlab-ci.yml 파일은 gitlab 에서 CI/CD pipeline 을 구성할 때 사용하는 configuration file 이다. 이 파일이 프로젝트(Repository) 최상단 디렉토리에 위치하고 있으면 gitlab에서는 이를 자동으로 읽어들인다.