summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@redhat.com>2016-02-29 09:33:59 +0100
committerNikos Mavrogiannopoulos <nmav@redhat.com>2016-02-29 09:33:59 +0100
commit0570b22afd6b771d55bcac2503759b082ddc86a7 (patch)
treeb7052c8a06af98deb1d10d6456dde3bae652d044
parent57b3490e9789b084b44ab4f20456a2dad2ebb323 (diff)
downloadlibtasn1-0570b22afd6b771d55bcac2503759b082ddc86a7.tar.gz
Added .gitlab-ci.yml
-rw-r--r--.gitlab-ci.yml12
1 files changed, 12 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
new file mode 100644
index 0000000..c33b6e7
--- /dev/null
+++ b/.gitlab-ci.yml
@@ -0,0 +1,12 @@
+# See http://doc.gitlab.com/ce/ci/yaml/ for documentation.
+Build and Check (x86-64):
+ script:
+ - git submodule update --init && make autoreconf && ./configure && make -j4 && make -j4 check
+ except:
+ - tags
+Build and Check with asan:
+ script:
+ - git submodule update --init && make autoreconf && CFLAGS="-fsanitize=address -g
+ -O2" LDFLAGS="-static-libasan" ./configure --disable-valgrind-tests && make -j4 && make check -j4
+ except:
+ - tags