diff options
-rw-r--r-- | .build.yml | 28 | ||||
-rw-r--r-- | .travis.yml | 27 |
2 files changed, 6 insertions, 49 deletions
@@ -59,7 +59,6 @@ requires: - autoconf-archive - clang-analyzer - clang - - cppcheck-htmlreport - git - gcc - make @@ -134,37 +133,18 @@ before_scripts: - chmod +x /usr/bin/gla11y build_scripts: - - if [ ${DISTRO_NAME} == "debian" ];then - - export CFLAGS+=" -Wsign-compare -Wunused-macros -Wunused-parameter" - - cppcheck --enable=warning,style,performance,portability,information,missingInclude . - - fi - - NOCONFIGURE=1 ./autogen.sh - - scan-build $CHECKERS ./configure --enable-empty-view --enable-compile-warnings=maximum + - scan-build $CHECKERS ./configure --enable-empty-view - if [ $CPU_COUNT -gt 1 ]; then - - if [ ${DISTRO_NAME} == "debian" ];then - - scan-build $CHECKERS --keep-cc --use-cc=clang --use-c++=clang++ -o html-report make -j $(( CPU_COUNT + 1 )) - - make clean - - fi - scan-build $CHECKERS --keep-cc -o html-report make -j $(( CPU_COUNT + 1 )) - else - - if [ ${DISTRO_NAME} == "debian" ];then - - scan-build $CHECKERS --keep-cc --use-cc=clang --use-c++=clang++ -o html-report make - - make clean - - fi - scan-build $CHECKERS --keep-cc -o html-report make - fi - -after_scripts: - - if [ ${DISTRO_NAME} == "fedora" ];then - - cppcheck --xml --output-file=cppcheck.xml --enable=warning,style,performance,portability,information,missingInclude . - - 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 - if [ ${DISTRO_NAME} == "debian" ];then - - make install - - if xvfb-run make check; then :; else cat eel/test-suite.log; cat src/test-suite.log; false; fi + - cppcheck --enable=warning,style,performance,portability,information,missingInclude . - fi + +after_scripts: - make distcheck releases: diff --git a/.travis.yml b/.travis.yml index 45a002b9..2821455b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -17,8 +17,7 @@ branches: before_install: - curl -Ls -o docker-build https://github.com/mate-desktop/mate-dev-scripts/raw/master/travis/docker-build - - curl -Ls -o gen-index https://github.com/mate-desktop/mate-dev-scripts/raw/master/travis/gen-index.sh - - chmod +x docker-build gen-index + - chmod +x docker-build install: - pip3 install PyGithub @@ -29,7 +28,7 @@ script: notifications: irc: - if: (tag OR branch = master) AND + if: (tag OR branch = "1.26") AND repo = mate-desktop/caja channels: - "irc.libera.chat#mate-dev" @@ -40,17 +39,6 @@ notifications: on_failure: always deploy: - - provider: pages - edge: true - token: $GITHUB_TOKEN - keep_history: false - committer_from_gh: true - target_branch: gh-pages - local_dir: html-report - strategy: git - on: - all_branches: true - condition: ${DISTRO} =~ ^fedora.*$ - provider: script edge: true script: ./docker-build --verbose --config .build.yml --release github @@ -58,17 +46,6 @@ deploy: tags: true condition: "${TRAVIS_TAG} =~ ^v.*$ && ${DISTRO} =~ ^fedora.*$" -after_success: - - 'if [[ "$TRAVIS_SECURE_ENV_VARS" == "true" && "$TRAVIS_PULL_REQUEST" != "false" && ${DISTRO} =~ ^fedora.*$ ]]; then - REPO_SLUG_ARRAY=(${TRAVIS_REPO_SLUG//\// }); - REPO_NAME=${REPO_SLUG_ARRAY[1]}; - URL="https://${REPO_NAME}.mate-desktop.dev"; - COMMENT="Code analysis completed"; - curl -H "Authorization: token $GITHUB_TOKEN" -X POST - -d "{\"state\": \"success\", \"description\": \"$COMMENT\", \"context\":\"scan-build\", \"target_url\": \"$URL\"}" - https://api.github.com/repos/${TRAVIS_REPO_SLUG}/statuses/${TRAVIS_PULL_REQUEST_SHA}; - fi' - env: # - DISTRO="archlinux:latest" - DISTRO="debian:testing" |