uvg266/.gitlab-ci.yml

45 lines
1.1 KiB
YAML
Raw Normal View History

# Use Kvazaar CI base image which includes the build tools and ffmpeg + hmdec in ${HOME}/bin
image: ultravideo/kvazaar_ci_base:latest
2018-06-07 06:59:28 +00:00
# Build and test kvazaar
test-kvazaar: &test-template
stage: test
2018-06-07 06:59:28 +00:00
script:
- export PATH="${HOME}/bin:${PATH}"
2018-06-07 06:59:28 +00:00
- ./autogen.sh
- ./configure --enable-werror || (cat config.log && false)
- make --jobs=8
- make check --jobs=8 VERBOSE=1
2018-06-08 07:08:27 +00:00
artifacts:
paths:
- src/kvazaar
- src/.libs
expire_in: 1 week
test-asan:
<<: *test-template
variables:
CFLAGS: '-fsanitize=address'
# LeakSanitizer doesn't work inside the container because it requires
# ptrace so we disable it.
ASAN_OPTIONS: 'detect_leaks=0'
test-tsan:
<<: *test-template
variables:
CFLAGS: '-fsanitize=thread'
test-ubsan:
<<: *test-template
variables:
CFLAGS: '-fsanitize=undefined -fno-sanitize-recover=all -fno-sanitize=alignment'
test-valgrind:
<<: *test-template
variables:
KVAZAAR_OVERRIDE_angular_pred: generic
KVAZAAR_OVERRIDE_sao_band_ddistortion: generic
KVAZAAR_OVERRIDE_sao_edge_ddistortion: generic
KVAZAAR_OVERRIDE_calc_sao_edge_dir: generic
KVZ_TEST_VALGRIND: 1