You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@arrow.apache.org by GitBox <gi...@apache.org> on 2023/01/09 23:52:51 UTC

[GitHub] [arrow] EpsilonPrime opened a new issue, #15282: Integration tests are failing due to clang-format version issue

EpsilonPrime opened a new issue, #15282:
URL: https://github.com/apache/arrow/issues/15282

   ### Describe the bug, including details regarding any error messages, version, and platform.
   
   The environment depends on libclang-common-14-dev which probably isn't being specified.
   
   `The following packages have unmet dependencies:
    clang-14 : Depends: libclang-common-14-dev (= 1:14.0.6~++20221117072312+f28c006a5895-1~exp1~20221117192323.163) but it is not going to be installed
    clang-tidy-14 : Depends: libclang-common-14-dev but it is not going to be installed
   E: Unable to correct problems, you have held broken packages.
   The command '/bin/bash -o pipefail -c latest_system_llvm=10 &&     if [ ${llvm} -gt ${latest_system_llvm} -o          ${clang_tools} -gt ${latest_system_llvm} ]; then       apt-get update -y -q &&       apt-get install -y -q --no-install-recommends           apt-transport-https           ca-certificates           gnupg           lsb-release           wget &&       wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | apt-key add - &&       code_name=$(lsb_release --codename --short) &&       if [ ${llvm} -gt 10 ]; then         echo "deb https://apt.llvm.org/${code_name}/ llvm-toolchain-${code_name}-${llvm} main" >            /etc/apt/sources.list.d/llvm.list;       fi &&       if [ ${clang_tools} -ne ${llvm} -a            ${clang_tools} -gt ${latest_system_llvm} ]; then         echo "deb https://apt.llvm.org/${code_name}/ llvm-toolchain-${code_name}-${clang_tools} main" >            /etc/apt/sources.list.d/clang-tools.list;       fi;     fi &&     apt-get update -y -q &&     apt-
 get install -y -q --no-install-recommends         clang-${clang_tools}         clang-${llvm}         clang-format-${clang_tools}         clang-tidy-${clang_tools}         llvm-${llvm}-dev &&     apt-get clean &&     rm -rf /var/lib/apt/lists*' returned a non-zero code: 100
   ERROR: Service 'ubuntu-cpp' failed to build : Build failed
   Error: `docker-compose --file /home/travis/build/apache/arrow/docker-compose.yml build --build-arg BUILDKIT_INLINE_CACHE=1 ubuntu-cpp` exited with a non-zero exit code 1, see the process log above.
   `
   
   ### Component(s)
   
   C++, Continuous Integration


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscribe@arrow.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow] EpsilonPrime commented on issue #15282: Integration tests are failing due to clang-format version issue

Posted by GitBox <gi...@apache.org>.
EpsilonPrime commented on issue #15282:
URL: https://github.com/apache/arrow/issues/15282#issuecomment-1376903412

   I have been seeing this issue on all of my C++ PRs today.  Here's the only
   sample I can find after getting PRs closed:
   
   https://app.travis-ci.com/github/apache/arrow/jobs/592888013
   
   
   On Tue, Jan 10, 2023 at 12:29 AM Raúl Cumplido ***@***.***>
   wrote:
   
   > Hi @EpsilonPrime <https://github.com/EpsilonPrime> ,
   > Was this happening only on travis? Do you have a link to a failed build?
   > Thanks
   >
   > —
   > Reply to this email directly, view it on GitHub
   > <https://github.com/apache/arrow/issues/15282#issuecomment-1376897262>,
   > or unsubscribe
   > <https://github.com/notifications/unsubscribe-auth/AABDDCB6B7HUVDQ45D7ZZ2LWRUMXFANCNFSM6AAAAAATWALY2U>
   > .
   > You are receiving this because you were mentioned.Message ID:
   > ***@***.***>
   >
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow] raulcd commented on issue #15282: Integration tests are failing due to clang-format version issue

Posted by GitBox <gi...@apache.org>.
raulcd commented on issue #15282:
URL: https://github.com/apache/arrow/issues/15282#issuecomment-1376897262

   Hi @EpsilonPrime ,
   Was this happening only on travis? Do you have a link to a failed build?
   Thanks


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow] kiszk commented on issue #15282: [CI][C++] Integration tests are failing due to clang-format version issue

Posted by GitBox <gi...@apache.org>.
kiszk commented on issue #15282:
URL: https://github.com/apache/arrow/issues/15282#issuecomment-1377653959

   IMHO, `CLANG_TOOLS` is also required recently for arm and s390x in addition to `LLVM`.
   
   https://github.com/apache/arrow/commit/194f3f249a48ec7e572c8348d1ef880f24946e18


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow] EpsilonPrime commented on issue #15282: Integration tests are failing due to clang-format version issue

Posted by GitBox <gi...@apache.org>.
EpsilonPrime commented on issue #15282:
URL: https://github.com/apache/arrow/issues/15282#issuecomment-1376908078

   As to your other question -- I believe Travis is the place where we do the clang-format checks to make sure that we haven't forgotten to run clang-format.  I only have been having an issue with the Travis job.
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow] assignUser closed issue #15282: [CI][C++] Integration tests are failing due to clang-format version issue

Posted by GitBox <gi...@apache.org>.
assignUser closed issue #15282: [CI][C++] Integration tests are failing due to clang-format version issue
URL: https://github.com/apache/arrow/issues/15282


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org