aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Fischer <florian.fl.fischer@fau.de>2020-07-03 17:49:16 +0200
committerFlorian Fischer <florian.fl.fischer@fau.de>2020-07-03 17:49:16 +0200
commite237a876227396203abae3872754ffaf8cc7e180 (patch)
treea214dda4e26e20f6cd78c57ee273ab462bbc923a
parentb41cd0a02c3bec4099c9f632380ca3d51dddab7a (diff)
parent336e5077156f72bd9da9c3c7b3af6d21e7223a55 (diff)
downloadchattymalloc-e237a876227396203abae3872754ffaf8cc7e180.tar.gz
chattymalloc-e237a876227396203abae3872754ffaf8cc7e180.zip
Merge branch 'gitlab-ci' into 'master'
Add gitlab ci See merge request aj46ezos/chattymalloc!1
-rw-r--r--.gitlab-ci.yml21
1 files changed, 21 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
new file mode 100644
index 0000000..e06f6b1
--- /dev/null
+++ b/.gitlab-ci.yml
@@ -0,0 +1,21 @@
+image: "flowdalic/debian-dev:1.4"
+
+before_script:
+ - |
+ TOOLS="cc c++ clang clang++ gcc g++ clang-tidy clang meson"
+ for tool in $TOOLS; do
+ echo "$tool version"
+ $tool --version
+ done
+
+stages:
+ - build
+ - test
+
+build:
+ stage: build
+ script: make
+
+check-format:
+ stage: test
+ script: make check \ No newline at end of file