aboutsummaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorKaran Jayachandra <karan.jayachandra@nxp.com>2023-09-21 16:25:45 +0200
committerKaran Jayachandra <karan.jayachandra@nxp.com>2023-09-21 16:25:45 +0200
commit9d0621a967a66800d6af4adda3991339c8427710 (patch)
tree3d278abe728c0bc598c3e9c3ad1e163c015e6c1a /.gitlab-ci.yml
parent8f4923cee1bad64be2c5bb325907a7556304aa94 (diff)
Enabled CI/CD
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml23
1 files changed, 23 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
new file mode 100644
index 0000000..ffac424
--- /dev/null
+++ b/.gitlab-ci.yml
@@ -0,0 +1,23 @@
+image: registry.gitlab.com/pages/hugo/hugo_extended:latest
+
+variables:
+ HUGO_ENV: production
+
+default:
+ before_script:
+ - git submodule update --init
+
+test:
+ script:
+ - hugo
+ rules:
+ - if: $CI_COMMIT_REF_NAME != $CI_DEFAULT_BRANCH
+
+pages:
+ script:
+ - hugo
+ artifacts:
+ paths:
+ - public
+ rules:
+ - if: $CI_COMMIT_REF_NAME == $CI_DEFAULT_BRANCH