2020-02-27 22:45:03 +01:00
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
name: test-on-amd64
|
|
|
|
|
|
|
|
platform:
|
|
|
|
arch: amd64
|
|
|
|
|
|
|
|
steps:
|
2020-03-01 02:18:01 +01:00
|
|
|
- name: test build + valgrind
|
2020-02-27 22:45:03 +01:00
|
|
|
pull: if-not-exists
|
2020-03-01 21:46:53 +01:00
|
|
|
image: immawanderer/docker-archlinux-cdev
|
2020-02-27 22:45:03 +01:00
|
|
|
commands:
|
2020-02-27 22:47:38 +01:00
|
|
|
- cmake CMakeLists.txt
|
2020-02-27 22:45:03 +01:00
|
|
|
- make
|
2020-03-01 02:10:54 +01:00
|
|
|
- valgrind --log-file=valgrind_output ./pjc-0x02 < ./test_input > output
|
|
|
|
- cat valgrind_output
|
|
|
|
- grep "no leaks are possible" valgrind_output
|