From a53a6e6bc6ac5092e82ae493520b1538c6ccc304 Mon Sep 17 00:00:00 2001 From: raveit65 Date: Tue, 18 Feb 2020 11:54:26 +0100 Subject: travis: update config for new travis validation --- .build.yml | 128 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 128 insertions(+) create mode 100644 .build.yml (limited to '.build.yml') diff --git a/.build.yml b/.build.yml new file mode 100644 index 0000000..2a1d533 --- /dev/null +++ b/.build.yml @@ -0,0 +1,128 @@ +########################################################## +# THE FOLLOWING LINES IS USED BY docker-build +########################################################## +requires: + archlinux: + # Useful URL: https://git.archlinux.org/svntogit/community.git/tree/caja-extensions + - caja + - clang + - dbus-glib + - gcc + - git + - gupnp + - imagemagick + - make + - mate-common + - python + - samba + - which + + debian: + # Useful URL: https://github.com/mate-desktop/debian-packages + # Useful URL: https://salsa.debian.org/debian-mate-team/caja-extensions + - autopoint + - clang + - clang-tools + - cppcheck + - gcc + - git + - libcaja-extension-dev + - libdbus-1-dev + - libdbus-glib-1-dev + - libdconf-dev + - libgtk-3-dev + - libgupnp-1.2-dev + - libmate-desktop-dev + - libstartup-notification0-dev + - libxml2-utils + - make + - mate-common + - pkg-config + + fedora: + # Useful URL: https://src.fedoraproject.org/cgit/rpms/caja-extensions.git + - caja-devel + - clang + - clang-analyzer + - cppcheck-htmlreport + - dbus-glib-devel + - dbus-glib-devel + - gajim + - gcc + - git + - gtk3-devel + - gupnp-devel + - make + - mate-common + - mate-desktop-devel + - redhat-rpm-config + + ubuntu: + - autopoint + - clang + - clang-tools + - git + - libcaja-extension-dev + - libdbus-1-dev + - libdbus-glib-1-dev + - libdconf-dev + - libgtk-3-dev + - libgupnp-1.2-dev + - libmate-desktop-dev + - libstartup-notification0-dev + - libxml2-utils + - make + - mate-common + - pkg-config + +variables: + - CFLAGS="-Wall -Werror=format-security -Wredundant-decls" + - 'CHECKERS=" + -enable-checker deadcode.DeadStores + -enable-checker alpha.deadcode.UnreachableCode + -enable-checker alpha.core.CastSize + -enable-checker alpha.core.CastToStruct + -enable-checker alpha.core.IdenticalExpr + -enable-checker alpha.core.SizeofPtr + -enable-checker alpha.security.ArrayBoundV2 + -enable-checker alpha.security.MallocOverflow + -enable-checker alpha.security.ReturnPtrRange + -enable-checker alpha.unix.SimpleStream + -enable-checker alpha.unix.cstring.BufferOverlap + -enable-checker alpha.unix.cstring.NotNullTerminated + -enable-checker alpha.unix.cstring.OutOfBounds + -enable-checker alpha.core.FixedAddr + -enable-checker security.insecureAPI.strcpy"' + +build_scripts: + - ./autogen.sh + - scan-build $CHECKERS ./configure + - if [ $CPU_COUNT -gt 1 ]; then + - scan-build $CHECKERS --keep-cc -o html-report make -j $CPU_COUNT + - else + - scan-build $CHECKERS --keep-cc -o html-report make + - fi + - if [ ${DISTRO_NAME} == "debian" ];then + - cppcheck --enable=warning,style,performance,portability,information,missingInclude -i'caja-1.22.0' . + - fi + +after_scripts: + - if [ ${DISTRO_NAME} == "fedora" ];then + - cppcheck --xml --output-file=cppcheck.xml --enable=warning,style,performance,portability,information,missingInclude -i'caja-1.22.0' . + - cppcheck-htmlreport --title=${REPO_NAME} --file=cppcheck.xml --report-dir=cppcheck-htmlreport + - ./gen-index -l 20 -i https://github.com/${OWNER_NAME}/mate-icon-theme/raw/master/mate/16x16/apps/system-file-manager.png + - fi + - make distcheck + +releases: + draft: false + prerelease: false + checksum: true + file_glob: true + files: caja-extensions-*.tar.xz + github_release: + tags: true + overwrite: true + base_version: 1.20.0 + notify_servers: + - https://release.mate-desktop.org/release -- cgit v1.2.1