58 lines
953 B
YAML
58 lines
953 B
YAML
stages:
|
|
- build
|
|
- test
|
|
|
|
# Compile on CentOS 6.x, for some reason compiling on CentOS 7.x results in buffer corruption
|
|
build:6-7.1:
|
|
stage: build
|
|
image: leenooks/ci-tsm:6-7.1
|
|
script:
|
|
- make -f Makefile.linux64
|
|
only:
|
|
- master
|
|
tags:
|
|
- C
|
|
artifacts:
|
|
name: "$CI_BUILD_NAME"
|
|
paths:
|
|
- tsmpipe
|
|
|
|
test:6-7.1:
|
|
stage: test
|
|
image: leenooks/ci-tsm:6-7.1
|
|
dependencies:
|
|
- build:6-7.1
|
|
script:
|
|
- cd test && ./test.sh
|
|
only:
|
|
- master
|
|
tags:
|
|
- C
|
|
|
|
# Compile on CentOS 6.x, for some reason compiling on CentOS 7.x results in buffer corruption
|
|
build:7-7.1:
|
|
stage: build
|
|
image: leenooks/ci-tsm:7-7.1
|
|
script:
|
|
- make -f Makefile.linux64
|
|
only:
|
|
- master
|
|
tags:
|
|
- C
|
|
artifacts:
|
|
name: "$CI_BUILD_NAME"
|
|
paths:
|
|
- tsmpipe
|
|
|
|
test:7-7.1:
|
|
stage: test
|
|
image: leenooks/ci-tsm:7-7.1
|
|
dependencies:
|
|
- build:7-7.1
|
|
script:
|
|
- cd test && ./test.sh
|
|
only:
|
|
- master
|
|
tags:
|
|
- C
|