diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
new file mode 100644
index 0000000000000000000000000000000000000000..a0fd076fbd23449d05e0fb22006d0b373269faf6
--- /dev/null
+++ b/.gitlab-ci.yml
@@ -0,0 +1,36 @@
+##############################################################################
+# CI for CEPCSW at IHEP GitLab
+##############################################################################
+
+stages:
+  - build
+  # - test
+
+##############################################################################
+# Build Template
+##############################################################################
+.build_template:
+  stage: build
+  variables:
+    LCG_RELEASE:
+    CEPCSW_BLDTOOL: ninja
+  script:
+    - bash ./.build.ci.sh
+
+
+##############################################################################
+# Build CentOS 7 (LCG)
+##############################################################################
+build:lcg:el7:
+  extends: .build_template
+  variables:
+    LCG_RELEASE: LCG
+
+##############################################################################
+# Build CentOS 7 (KEY4HEP)
+##############################################################################
+build:k4:el7:
+  extends: .build_template
+  variables:
+    LCG_RELEASE: KEY4HEP_STACK
+