GitLab での CI/CD 入門
GitLab の CI/CD を学んだ記録
- see: Get started with GitLab CI/CD | GitLab
- see: Keyword reference for the .gitlab-ci.yml file | GitLab
Hello, World!
- Repository のルートに .gitlab-ci.yml を作成
- ジョブの定義を行うと Hello, World! できる
Read Morestages: - dev hello-job1: stage: dev script: - echo "Hello, $GITLAB_USER_LOGIN!" - echo "This is $CI_COMMIT_BRANCH branch." - sleep 5 hello-job2: stage...