From 9ff410e1b4f0ebf0fca69e37d2cb898a5098ba70 Mon Sep 17 00:00:00 2001 From: Angelos Chalaris Date: Sat, 1 Sep 2018 12:46:53 +0300 Subject: [PATCH] Add CI and CD --- glossary/Continuous-Deployment.md | 4 ++++ glossary/Continuous-Integration.md | 4 ++++ 2 files changed, 8 insertions(+) create mode 100644 glossary/Continuous-Deployment.md create mode 100644 glossary/Continuous-Integration.md diff --git a/glossary/Continuous-Deployment.md b/glossary/Continuous-Deployment.md new file mode 100644 index 000000000..3a958fe1a --- /dev/null +++ b/glossary/Continuous-Deployment.md @@ -0,0 +1,4 @@ +### Continuous Deployment + +Continuous Deployment follows the testing that happens during Continuous Integration and pushes changes to a staging or production system. +Continuous Deployment ensures that a version of the codebase is accessible at all times. \ No newline at end of file diff --git a/glossary/Continuous-Integration.md b/glossary/Continuous-Integration.md new file mode 100644 index 000000000..945cf1293 --- /dev/null +++ b/glossary/Continuous-Integration.md @@ -0,0 +1,4 @@ +### Continuous Integration + +Continuous Integration (CI) is the practice of testing each change done to a codebase automatically and as early as possible. +Two popular CI systems that integrate with GitHub are Travis CI and Circle CI. \ No newline at end of file