--- /dev/null
+# See http://doc.gitlab.com/ce/ci/yaml/ for documentation.
+Build and Check (x86-64):
+ script:
+ - ./.bootstrap &&
+ ./configure --disable-documentation && make -j4 &&
+ make check -j4
+ tags:
+ - x86-64
+ except:
+ - tags
+Build and Check (x86):
+ script:
+ - ./.bootstrap &&
+ ./configure --disable-documentation && make -j4 &&
+ make check -j4
+ tags:
+ - x86
+ except:
+ - tags
+2016-01-21 Niels Möller <nisse@lysator.liu.se>
+
+ * .gitlab-ci.yml: New file. Configuration for gitlab's continuous
+ integration system.
+
2016-01-20 Niels Möller <nisse@lysator.liu.se>
* testsuite/dlopen-test.c (main): Mark arguments as UNUSED.