cicd 5

[DevOps] gitHub Actions CICD - pipeline Example

Github Action GitHub에서 제공하는 지속적인 통합 (Continuous Integration) 및 지속적인 배포 (Continuous Deployment) 서비스 파이프 라인 만들기 .github/workflows 디렉토리에 저장된다. name : 파이프 라인 이름 설정 on : 파이프라인이 동작할 event Trigger 설정 jobs: WorkFlow의 job 목록 ex) build.yml # 파이프 라인 이름 설정 name: GUGBAB_GIT_FLOWER_CI # Event Trigger 설정 on: push: pull_request: # Action 탭에서 Workflow실행 가능 설정 workflow_dispatch: # WorkFlow의 job 목록 jobs: build: # ..

DevOps 2023.07.01

[CICD] Jenkins - Git,Maven,Gradle Plugins 설정 Docker 배포 Example

Jenkins Start 설명 https://puk0806.tistory.com/75 [CICD] Docker Container - Jenkins Start Example https://www.jenkins.io/ Jenkins Easy installation Jenkins is a self-contained Java-based program, ready to run out-of-the-box, with packages for Windows, Linux, macOS and other Unix-like operating systems. www.jenkins.io https://puk0806.tistory.com/55 [Doc puk0806.tistory.com Plugin 설치 Jenkins 관리 -> p..

DevOps 2023.06.06