stages: - style - build - test style-check: image: registry.videolan.org:5000/dav1d-debian-unstable:20181114201132 stage: style tags: - debian - amd64 script: - git grep -n -e $'\t' --or -e $'\r' -- . ':(exclude)*/compat/*' && exit 1 - /bin/true build-debian: image: registry.videolan.org:5000/dav1d-debian-unstable:20181114201132 stage: build tags: - debian - amd64 script: - meson build --buildtype release --werror - ninja -C build - cd build && meson test -v build-debian-static: image: registry.videolan.org:5000/dav1d-debian-unstable:20181114201132 stage: build tags: - debian - amd64 script: - meson build --buildtype release --default-library static --werror - ninja -C build - cd build && meson test -v build-debian32: image: registry.videolan.org:5000/dav1d-debian-unstable:20181218135732 stage: build tags: - debian - amd64 script: - meson build --buildtype release --werror --cross-file /opt/crossfiles/linux32.meson - ninja -C build - cd build && meson test -v build-win32: image: registry.videolan.org:5000/dav1d-debian-unstable:20181114201132 stage: build tags: - win32 script: - meson build --buildtype release --werror --libdir lib --prefix "$(pwd)/build/dav1d_install" --cross-file /opt/crossfiles/i686-w64-mingw32.meson -Ddefault_library=both - ninja -C build - ninja -C build install artifacts: name: "$CI_JOB_NAME-$CI_COMMIT_REF_SLUG" paths: - build/dav1d_install/ expire_in: 1 week build-win64: image: registry.videolan.org:5000/dav1d-debian-unstable:20181114201132 stage: build tags: - win64 script: - meson build --buildtype release --werror --libdir lib --prefix "$(pwd)/build/dav1d_install" --cross-file /opt/crossfiles/x86_64-w64-mingw32.meson -Ddefault_library=both - ninja -C build - ninja -C build install artifacts: name: "$CI_JOB_NAME-$CI_COMMIT_REF_SLUG" paths: - build/dav1d_install/ expire_in: 1 week build-win-arm32: image: registry.videolan.org:5000/vlc-debian-llvm-mingw:20190117110230 stage: build tags: - win32 script: - meson build --buildtype release --werror --libdir lib --prefix "$(pwd)/build/dav1d_install" --cross-file /opt/crossfiles/armv7-w64-mingw32.meson -Ddefault_library=both - ninja -C build build-win-arm64: image: registry.videolan.org:5000/vlc-debian-llvm-mingw:20190117110230 stage: build tags: - win64 script: - meson build --buildtype release --werror --libdir lib --prefix "$(pwd)/build/dav1d_install" --cross-file /opt/crossfiles/aarch64-w64-mingw32.meson -Ddefault_library=both - ninja -C build - ninja -C build install artifacts: name: "$CI_JOB_NAME-$CI_COMMIT_REF_SLUG" paths: - build/dav1d_install/ expire_in: 1 week build-debian-aarch64: stage: build image: registry.videolan.org:5000/dav1d-debian-unstable-aarch64:20181122182457 tags: - aarch64 - debian script: - meson build --buildtype release --werror - ninja -C build - cd build && meson test -v build-debian-aarch64-clang-5: stage: build image: registry.videolan.org:5000/dav1d-debian-unstable-aarch64:20181122182457 tags: - aarch64 - debian script: - env CC=clang-5.0 CFLAGS='-integrated-as' meson build --buildtype release - ninja -C build - cd build && meson test -v build-macos: stage: build tags: - macos script: - meson build --buildtype release -Ddefault_library=both --werror - ninja -C build - cd build && meson test -v build-debian-werror: image: registry.videolan.org:5000/dav1d-debian-unstable-aarch64:20181122182457 stage: build tags: - aarch64 - debian script: - env CC='clang-7' meson build --buildtype debug --werror - ninja -C build build-debian-armv7: stage: build image: registry.videolan.org:5000/dav1d-debian-unstable-armv7:20190202101732 tags: - armv7 - debian script: - meson build --buildtype release --werror - ninja -C build - cd build && meson test -v build-debian-armv7-clang-5: stage: build image: registry.videolan.org:5000/dav1d-debian-unstable-armv7:20190202101732 tags: - armv7 - debian script: - env CC=clang-5.0 CFLAGS='-integrated-as' meson build --buildtype release - ninja -C build - cd build && meson test -v test-debian: image: registry.videolan.org:5000/dav1d-debian-unstable:20181114201132 stage: test tags: - debian - amd64 cache: key: testdata.git paths: - cache/dav1d-test-data.git/ script: - test -d cache || mkdir cache - test -d cache/dav1d-test-data.git && GIT_DIR=cache/dav1d-test-data.git git fetch --refmap=refs/heads/master:refs/heads/master origin master - test -d cache/dav1d-test-data.git || git clone --bare https://code.videolan.org/videolan/dav1d-test-data.git cache/dav1d-test-data.git - git clone cache/dav1d-test-data.git tests/dav1d-test-data - meson build --buildtype release -Dtestdata_tests=true -Dlogging=false - ninja -C build - cd build && time meson test -v dependencies: [] test-debian-asan: image: registry.videolan.org:5000/dav1d-debian-unstable:20181114201132 stage: test tags: - debian - amd64 cache: key: testdata.git paths: - cache/dav1d-test-data.git/ variables: ASAN_OPTIONS: 'detect_leaks=0' script: - test -d cache || mkdir cache - test -d cache/dav1d-test-data.git && GIT_DIR=cache/dav1d-test-data.git git fetch --refmap=refs/heads/master:refs/heads/master origin master - test -d cache/dav1d-test-data.git || git clone --bare https://code.videolan.org/videolan/dav1d-test-data.git cache/dav1d-test-data.git - git clone cache/dav1d-test-data.git tests/dav1d-test-data - meson build --buildtype debugoptimized -Dtestdata_tests=true -Dlogging=false -Db_sanitize=address -Dbuild_asm=false - ninja -C build - cd build && time meson test -v --setup=sanitizer dependencies: [] test-debian-msan: image: registry.videolan.org:5000/dav1d-debian-unstable:20181114201132 stage: test tags: - debian - amd64 cache: key: testdata.git paths: - cache/dav1d-test-data.git/ variables: MSAN_OPTIONS: 'exitcode=1' script: - test -d cache || mkdir cache - test -d cache/dav1d-test-data.git && GIT_DIR=cache/dav1d-test-data.git git fetch --refmap=refs/heads/master:refs/heads/master origin master - test -d cache/dav1d-test-data.git || git clone --bare https://code.videolan.org/videolan/dav1d-test-data.git cache/dav1d-test-data.git - git clone cache/dav1d-test-data.git tests/dav1d-test-data - env CC=clang meson build --buildtype debugoptimized -Dtestdata_tests=true -Dlogging=false -Db_sanitize=memory -Db_lundef=false -Dbuild_asm=false - ninja -C build - cd build && time meson test -v --setup=sanitizer dependencies: [] test-debian-ubsan: image: registry.videolan.org:5000/dav1d-debian-unstable:20181114201132 stage: test tags: - debian - amd64 cache: key: testdata.git paths: - cache/dav1d-test-data.git/ variables: UBSAN_OPTIONS: 'print_stacktrace=1:halt_on_error=1' script: - test -d cache || mkdir cache - test -d cache/dav1d-test-data.git && GIT_DIR=cache/dav1d-test-data.git git fetch --refmap=refs/heads/master:refs/heads/master origin master - test -d cache/dav1d-test-data.git || git clone --bare https://code.videolan.org/videolan/dav1d-test-data.git cache/dav1d-test-data.git - git clone cache/dav1d-test-data.git tests/dav1d-test-data - env CC=clang meson build --buildtype debugoptimized -Dtestdata_tests=true -Dlogging=false -Db_sanitize=undefined -Db_lundef=false -Dbuild_asm=false - ninja -C build - cd build && time meson test -v --setup=sanitizer dependencies: []