aboutsummaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorToni Uhlig <matzeton@googlemail.com>2019-01-23 00:03:43 +0100
committerToni Uhlig <matzeton@googlemail.com>2019-01-23 11:24:44 +0100
commita9f09b3697e34e2073aef849a1b853774b65e2c7 (patch)
tree39b41f8753db473608e76eed2f237effc861f397 /.gitlab-ci.yml
parent6adad1f243122a31fffc1ff99224ce88939877ff (diff)
gitlab-ci test some executables
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml14
1 files changed, 14 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 56cbf98..7a6d923 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -2,6 +2,7 @@ image: debian:stable-slim
stages:
- build
+ - test
build:
script:
@@ -9,5 +10,18 @@ build:
- apt-get install -y make binutils nasm gcc libc6-dev libc6-dev-i386
- make -j4 V=s
stage: build
+ artifacts:
+ untracked: true
+ only:
+ - master
+
+test:
+ script:
+ - ./funcjmp_simple_x86 || test $? -eq 66
+ - ./funcjmp_ext_x86 || test $? -eq 66
+ - ./exec_crypter
+ stage: test
+ dependencies:
+ - build
only:
- master