summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2021-04-09 23:20:09 -0300
committerJesusaves <cpntb1@ymail.com>2021-04-09 23:20:09 -0300
commit4903d41b99555c45be569de1c20ba4035854c888 (patch)
tree3a9a75e59f45ef9e415b50e28af89fd2fc56bd34 /.gitlab-ci.yml
downloadclientdata-4903d41b99555c45be569de1c20ba4035854c888.tar.gz
clientdata-4903d41b99555c45be569de1c20ba4035854c888.tar.bz2
clientdata-4903d41b99555c45be569de1c20ba4035854c888.tar.xz
clientdata-4903d41b99555c45be569de1c20ba4035854c888.zip
Reinitialized git repository with Evol2 support
Major changes: - Makefile - Gitlab CI - Network update - Char Creation update
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml82
1 files changed, 82 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
new file mode 100644
index 00000000..df624bd7
--- /dev/null
+++ b/.gitlab-ci.yml
@@ -0,0 +1,82 @@
+stages:
+- test
+- deploy
+- fail
+- ok
+
+image: debian:stable
+before_script:
+ - uname -a
+
+testxml:
+ stage: test
+ script:
+ - ./.tools/testxml.sh
+ - pwd
+
+pngcheck:
+ stage: test
+ script:
+ - ./.tools/pngcheck.sh
+
+imagemagiccheck:
+ stage: test
+ script:
+ - ./.tools/imagemagiccheck.sh
+
+licensecheck:
+ stage: test
+ script:
+ - ./.tools/licensecheck.sh
+
+manaplus:
+ stage: test
+ image: debian:unstable
+ script:
+ - ./.tools/manaplus.sh
+ artifacts:
+ paths:
+ - shared
+ when: always
+ expire_in: 3 week
+
+newlines:
+ stage: test
+ script:
+ - ./.tools/newlines.sh
+ artifacts:
+ paths:
+ - shared
+ when: always
+ expire_in: 3 week
+
+pages:
+ stage: deploy
+ script:
+ - ./.tools/deploy.sh
+ - pwd
+ artifacts:
+ paths:
+ - public
+ only:
+ - master
+
+ok_job:
+ stage: ok
+ script:
+ - pwd
+ - echo $CI_BUILD_REF_NAME
+ when: on_success
+ dependencies: []
+ variables:
+ GIT_STRATEGY: none
+
+fail_job:
+ stage: fail
+ script:
+ - pwd
+ - echo $CI_BUILD_REF_NAME
+ when: on_failure
+ dependencies: []
+ variables:
+ GIT_STRATEGY: none