aboutsummaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: 7a6d923a90100edf19296ad0ab59eecebf20ef2e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
image: debian:stable-slim

stages:
  - build
  - test

build:
  script:
    - apt-get -qq update
    - 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