Notice
Recent Posts
Recent Comments
Link
| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 1 | 2 | 3 | 4 | 5 | 6 | 7 |
| 8 | 9 | 10 | 11 | 12 | 13 | 14 |
| 15 | 16 | 17 | 18 | 19 | 20 | 21 |
| 22 | 23 | 24 | 25 | 26 | 27 | 28 |
| 29 | 30 | 31 |
Tags
- std::endl
- c++ multi chatting room
- delete function
- operator overloading
- constructor
- suffix return type
- pointer to member data
- diamond inheritance
- vector size
- this call
- std::ostream
- vector capacity
- increment operator
- new&delete
- virtual inheritance
- std::vector
- discord bot
- conversion constructor
- base from member
- member function pointer
- std::cout
- placement new
- virtual function table
- C++
- return by reference
- virtual destructor
- dynamic_cast
- virtual function
- 더 지니어스 양면포커
- c++ basic practice
Archives
- Today
- Total
목록DevOps (1)
I'm FanJae.
[CI/CD] 지속적 통합 / 지속적 배포
CI/CD 란?1. CI (Continuous Integration) / 지속적 통합 CI(Continuous Integration, 지속적 통합)는 개발 과정에서 코드 변경 사항을 자주 통합하고, 그때마다 빌드와 테스트를 자동으로 수행하여 문제를 빠르게 발견하는 개발 방식이다. 1) 필요한 이유 여러 개발자가 동시에 작업할 경우, 각자의 코드가 로컬 환경에서는 정상적으로 작동하더라도 공유 브랜치에 통합되는 과정에서 빌드 오류, 테스트 실패, 기능 간 비호환 문제 등이 발생할 수 있다. CI는 이러한 문제를 조기에 발견하고, 공용 코드의 품질을 일정하게 유지하기 위해 사용된다.2) CI의 핵심코드의 변경 사항을 자주 통합하고, 통합 과정에서 빌드와 테스트를 자동으로 수행한다. 문제가 발생했을 때 이를 빠..
DevOps
2026. 3. 30. 21:42