> Could you share full error log for CMake?

Looks like CMake isn't dumping an error log, what Jacob shared is the
entirety of the relevant portions of the CMake output.

It looks like it's something about Gandiva which is requiring LLVM-16 which
isn't available on Manjaro. I tried running the verification again but with
USE_CONDA=1 and was able to get it to succeed.

The command that succeeded was:

USE_CONDA=1 \
   TEST_DEFAULT=0 \
   TEST_CPP=1 \
   TEST_GO=1 \
   dev/release/verify-release-candidate.sh 12.0.0 0

I also ran without conda but with gandiva disabled and didn't get that
error:

TEST_DEFAULT=0 \
       ARROW_GANDIVA=0 \
       TEST_CPP=1 \
       dev/release/verify-release-candidate.sh 12.0.0 0

I also never encountered the flakey Go test. So I'm not sure if this is
something we should worry about as far as manjaro's ability to build Arrow
without Conda due to Gandiva.





On Mon, Apr 24, 2023 at 8:48 PM Sutou Kouhei <k...@clear-code.com> wrote:

> Hi,
>
> > does v12 make llvm-16 a requirement now?
>
> No. If the C++ implementation can't find LLVM 16, it should
> search LLVM 15, 14 and so on.
>
> (I want to see full CMake error log.)
>
>
> Thanks,
> --
> kou
>
> In <cah4123a1lxtdf5pr-li5c23qlmwgfbhnvo_bqx36rldusjx...@mail.gmail.com>
>   "Re: [VOTE] Release Apache Arrow 12.0.0 - RC0" on Mon, 24 Apr 2023
> 20:08:59 -0400,
>   Matt Topol <zotthewiz...@gmail.com> wrote:
>
> > I was able to replicate the same llvm issue that Jacob saw, does v12 make
> > llvm-16 a requirement now? It looks like the `pacman` package manager
> > (Arch, Manjaro and several others) have llvm-15 as the most recent LLVM
> and
> > clang versions in their repositories. So if we're requiring clang-16 for
> > some reason that would be the cause of this failure. Though looking
> through
> > the cmake modules, I don't see why it would be requiring LLVM-16 and
> > discounting 15.0.7, so I'm not sure what's going on yet.
> >
> > I'll try to dig a bit and see if i can come up with something.
> >
> > On Mon, Apr 24, 2023 at 5:27 PM Matt Topol <zotthewiz...@gmail.com>
> wrote:
> >
> >> @Jacob I'm currently seeing if i can replicate the Majaro failure you
> >> found via a docker image for manjaro. I'll report back If I am and what
> I
> >> figure out.
> >>
> >> On Mon, Apr 24, 2023 at 3:12 PM Raúl Cumplido <raulcumpl...@gmail.com>
> >> wrote:
> >>
> >>> El lun, 24 abr 2023 a las 18:53, Will Jones
> >>> (<will.jones...@gmail.com>) escribió:
> >>> >
> >>> > I'm seeing failing Pandas tests in PyArrow when verifying with
> >>> >
> >>> > USE_CONDA=1 dev/release/verify-release-candidate.sh 12.0.0 0
> >>> >
> >>> >
> >>>
> pyarrow/tests/test_extension_type.py::test_extension_to_pandas_storage_type[registered_period_type0]
> >>> > - NotImplementedError: extension<test.period<PeriodType>>
> >>>
> >>> This is also happening on our nightlies from today:
> >>>
> >>>
> https://github.com/ursacomputing/crossbow/actions/runs/4786502455/jobs/8510514881
> >>>
> >>> There has been a new pandas release: 2.0.1 around 9 hours ago which
> >>> seems to be the causing issue:
> >>> https://pypi.org/project/pandas/#history
> >>>
> >>> >
> >>> > No one else is getting that?
> >>> >
> >>> >
> >>> > On Sun, Apr 23, 2023 at 9:21 AM Raúl Cumplido <
> raulcumpl...@gmail.com>
> >>> > wrote:
> >>> >
> >>> > > +1 (non binding)
> >>> > >
> >>> > > I have tested both SOURCES and BINARIES successfully with:
> >>> > > TEST_DEFAULT=0 TEST_SOURCE=1
> dev/release/verify-release-candidate.sh
> >>> > > 12.0.0 0
> >>> > > TEST_DEFAULT=0 TEST_WHEELS=1
> dev/release/verify-release-candidate.sh
> >>> > > 12.0.0 0
> >>> > > TEST_DEFAULT=0 TEST_BINARIES=1
> dev/release/verify-release-candidate.sh
> >>> > > 12.0.0 0
> >>> > > with:
> >>> > >   * Python 3.10.6
> >>> > >   * gcc (Ubuntu 11.3.0-1ubuntu1~22.04) 11.3.0
> >>> > >   * NVIDIA CUDA cuda_11.5.r11.5/compiler.30672275_0
> >>> > >   * openjdk version "17.0.6" 2023-01-17
> >>> > >   * ruby 3.0.2p107 (2021-07-07 revision 0db68f0233)
> [x86_64-linux-gnu]
> >>> > >   * dotnet 7.0.203
> >>> > >   * Ubuntu 22.04 LTS
> >>> > >
> >>> > > El dom, 23 abr 2023 a las 12:59, Yibo Cai (<yibo....@arm.com>)
> >>> escribió:
> >>> > > >
> >>> > > > +1
> >>> > > >
> >>> > > > I ran the followings on Ubuntu-22.04, aarch64.
> >>> > > >
> >>> > > > TEST_DEFAULT=0 \
> >>> > > >    TEST_CPP=1 \
> >>> > > >    TEST_PYTHON=1 \
> >>> > > >    TEST_GO=1 \
> >>> > > >    dev/release/verify-release-candidate.sh 12.0.0 0
> >>> > > >
> >>> > > > TEST_DEFAULT=0 \
> >>> > > >    TEST_WHEELS=1 \
> >>> > > >    dev/release/verify-release-candidate.sh 12.0.0 0
> >>> > > >
> >>> > > >
> >>> > > > On 4/23/23 14:40, Sutou Kouhei wrote:
> >>> > > > > +1
> >>> > > > >
> >>> > > > > I ran the followings on Debian GNU/Linux sid:
> >>> > > > >
> >>> > > > >    * TEST_DEFAULT=0 \
> >>> > > > >        TEST_SOURCE=1 \
> >>> > > > >        LANG=C \
> >>> > > > >        TZ=UTC \
> >>> > > > >        CUDAToolkit_ROOT=/usr \
> >>> > > > >        ARROW_CMAKE_OPTIONS="-DBoost_NO_BOOST_CMAKE=ON
> >>> > > -Dxsimd_SOURCE=BUNDLED" \
> >>> > > > >        dev/release/verify-release-candidate.sh 12.0.0 0
> >>> > > > >
> >>> > > > >    * TEST_DEFAULT=0 \
> >>> > > > >        TEST_APT=1 \
> >>> > > > >        LANG=C \
> >>> > > > >        dev/release/verify-release-candidate.sh 12.0.0 0
> >>> > > > >
> >>> > > > >    * TEST_DEFAULT=0 \
> >>> > > > >        TEST_BINARY=1 \
> >>> > > > >        LANG=C \
> >>> > > > >        dev/release/verify-release-candidate.sh 12.0.0 0
> >>> > > > >
> >>> > > > >    * TEST_DEFAULT=0 \
> >>> > > > >        TEST_JARS=1 \
> >>> > > > >        LANG=C \
> >>> > > > >        dev/release/verify-release-candidate.sh 12.0.0 0
> >>> > > > >
> >>> > > > >    * TEST_DEFAULT=0 \
> >>> > > > >        TEST_PYTHON_VERSIONS=3.11 \
> >>> > > > >        TEST_WHEELS=1 \
> >>> > > > >        LANG=C \
> >>> > > > >        dev/release/verify-release-candidate.sh 12.0.0 0
> >>> > > > >
> >>> > > > >    * TEST_DEFAULT=0 \
> >>> > > > >        TEST_YUM=1 \
> >>> > > > >        LANG=C \
> >>> > > > >        dev/release/verify-release-candidate.sh 12.0.0 0
> >>> > > > >
> >>> > > > > with:
> >>> > > > >
> >>> > > > >    * .NET SDK (6.0.406)
> >>> > > > >    * Python 3.11.2
> >>> > > > >    * gcc (Debian 12.2.0-14) 12.2.0
> >>> > > > >    * nvidia-cuda-dev 11.7.99~11.7.1-4
> >>> > > > >    * openjdk version "17.0.6" 2023-01-17
> >>> > > > >    * ruby 3.1.2p20 (2022-04-12 revision 4491bb740a)
> >>> [x86_64-linux-gnu]
> >>> > > > >
> >>> > > > >
> >>> > > > > Thanks,
> >>> > >
> >>>
> >>
>

Reply via email to