This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
tsmpipe/.gitlab-ci.yml

28 lines
427 B
YAML
Raw Normal View History

2016-06-23 11:29:18 +00:00
# Compile on CentOS 6.x, for some reason compiling on CentOS 7.x results in buffer corruption
stages:
- build
- test
2016-06-23 11:32:08 +00:00
cache:
untracked: true
2016-06-23 11:29:18 +00:00
test:6-7.1:build:
stage: build
2016-06-23 05:36:09 +00:00
image: leenooks/ci-tsm:6-7.1
script:
- make -f Makefile.linux64
only:
- master
tags:
- C
2016-06-23 11:29:18 +00:00
test:6-7.1:test:
stage: test
image: leenooks/ci-tsm:6-7.1
script:
- cd test && ./test.sh
only:
- master
tags:
- C