25 lines
401 B
YAML
25 lines
401 B
YAML
# Compile on CentOS 6.x, for some reason compiling on CentOS 7.x results in buffer corruption
|
|
stages:
|
|
- build
|
|
- test
|
|
|
|
test:6-7.1:build:
|
|
stage: build
|
|
image: leenooks/ci-tsm:6-7.1
|
|
script:
|
|
- make -f Makefile.linux64
|
|
only:
|
|
- master
|
|
tags:
|
|
- C
|
|
|
|
test:6-7.1:test:
|
|
stage: test
|
|
image: leenooks/ci-tsm:6-7.1
|
|
script:
|
|
- cd test && ./test.sh
|
|
only:
|
|
- master
|
|
tags:
|
|
- C
|