From 099da72348b9c87ba4654fe1c0535b61a505a2d0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luis=20=C3=81ngel=20San=20Mart=C3=ADn?= Date: Sat, 17 Aug 2019 21:27:53 +0200 Subject: [PATCH] Remove format checking from Linux job, clang-format version installed doesn't work well with our current setup --- azure-pipelines.yml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 15583b65..c14e7cfc 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -16,13 +16,7 @@ jobs: sudo apt-get install -y --allow-unauthenticated qt-default qt5-qmake \ qtbase5-dev qtmultimedia5-dev libpoppler-qt5-dev qtscript5-dev \ libqt5opengl5-dev libglu1-mesa-dev libunarr-dev qtdeclarative5-dev - sudo apt-get install -y --allow-unauthenticated clang-format displayName: 'Install dependencies' - - script: | - cd $(Build.SourcesDirectory) - find . \( -name '*.h' -or -name '*.cpp' -or -name '*.c' -or -name '*.mm' -or -name '*.m' \) -print0 | xargs -0 clang-format -style=file -i - if [ "$(git diff $(Build.SourceVersion))" != "" ]; then exit 1; fi - displayName: 'Check format' - script: | qmake CONFIG+="unarr" make