summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorNiels Möller <nisse@lysator.liu.se>2016-01-21 20:47:33 +0100
committerNiels Möller <nisse@lysator.liu.se>2016-01-21 20:47:33 +0100
commit3a934735e6c978a45ddc77120b9aec88d8fec5d5 (patch)
tree05214472bb3a35f165177373313980ce45b535c9 /.gitlab-ci.yml
parentce18cf99082ec405631c11deea468914345b50b0 (diff)
downloadnettle-3a934735e6c978a45ddc77120b9aec88d8fec5d5.tar.gz
New file .gitlab-ci.yml.
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml19
1 files changed, 19 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
new file mode 100644
index 00000000..99b241e6
--- /dev/null
+++ b/.gitlab-ci.yml
@@ -0,0 +1,19 @@
+# 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