-
Notifications
You must be signed in to change notification settings - Fork 4.2k
GH-46499: [CI][Crossbow][C++] Use apache/arrow for Meson #46501
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,163 @@ | ||
| # Licensed to the Apache Software Foundation (ASF) under one | ||
| # or more contributor license agreements. See the NOTICE file | ||
| # distributed with this work for additional information | ||
| # regarding copyright ownership. The ASF licenses this file | ||
| # to you under the Apache License, Version 2.0 (the | ||
| # "License"); you may not use this file except in compliance | ||
| # with the License. You may obtain a copy of the License at | ||
| # | ||
| # http://www.apache.org/licenses/LICENSE-2.0 | ||
| # | ||
| # Unless required by applicable law or agreed to in writing, | ||
| # software distributed under the License is distributed on an | ||
| # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
| # KIND, either express or implied. See the License for the | ||
| # specific language governing permissions and limitations | ||
| # under the License. | ||
|
|
||
| name: C++ Extra | ||
|
|
||
| on: | ||
| push: | ||
| branches: | ||
| - '**' | ||
| - '!dependabot/**' | ||
| paths: | ||
| - '.dockerignore' | ||
| - '.github/workflows/cpp_extra.yml' | ||
| - 'ci/conda_env_*' | ||
| - 'ci/docker/**' | ||
| - 'ci/scripts/cpp_*' | ||
| - 'ci/scripts/install_azurite.sh' | ||
| - 'ci/scripts/install_gcs_testbench.sh' | ||
| - 'ci/scripts/install_minio.sh' | ||
| - 'ci/scripts/msys2_*' | ||
| - 'ci/scripts/util_*' | ||
| - 'cpp/**' | ||
| - 'docker-compose.yml' | ||
| - 'format/Flight.proto' | ||
| - 'testing' | ||
| tags: | ||
| - '**' | ||
| pull_request: | ||
| paths: | ||
| - '.dockerignore' | ||
| - '.github/workflows/cpp_extra.yml' | ||
| - 'ci/conda_env_*' | ||
| - 'ci/docker/**' | ||
| - 'ci/scripts/cpp_*' | ||
| - 'ci/scripts/install_azurite.sh' | ||
| - 'ci/scripts/install_gcs_testbench.sh' | ||
| - 'ci/scripts/install_minio.sh' | ||
| - 'ci/scripts/msys2_*' | ||
| - 'ci/scripts/util_*' | ||
| - 'cpp/**' | ||
| - 'docker-compose.yml' | ||
| - 'format/Flight.proto' | ||
| - 'testing' | ||
| types: | ||
| - labeled | ||
| - opened | ||
| - reopened | ||
| - synchronize | ||
| schedule: | ||
| - cron: | | ||
| 0 0 * * * | ||
|
|
||
| concurrency: | ||
| group: ${{ github.repository }}-${{ github.head_ref || github.sha }}-${{ github.workflow }} | ||
| cancel-in-progress: true | ||
|
|
||
| permissions: | ||
| contents: read | ||
|
|
||
| jobs: | ||
| check-labels: | ||
| name: Check labels | ||
| runs-on: ubuntu-latest | ||
| timeout-minutes: 5 | ||
| outputs: | ||
| ci-extra: ${{ steps.check.outputs.ci-extra }} | ||
| steps: | ||
| - name: Check | ||
| id: check | ||
| env: | ||
| GH_TOKEN: ${{ github.token }} | ||
| run: | | ||
| case "${GITHUB_EVENT_NAME}" in | ||
| push|workflow_dispatch) | ||
| ci_extra=true | ||
| ;; | ||
| pull_request) | ||
| n_ci_extra_labels=$( | ||
| gh pr view ${{ github.event.number }} \ | ||
| --jq '.labels[].name | select(. == "CI: Extra")' \ | ||
| --json labels \ | ||
| --repo ${GITHUB_REPOSITORY} | wc -l) | ||
| if [ "${n_ci_extra_labels}" -eq 1 ]; then | ||
| ci_extra=true | ||
| else | ||
| ci_extra=false | ||
| fi | ||
| ;; | ||
| esac | ||
|
|
||
| echo "ci-extra=${ci_extra}" >> "${GITHUB_OUTPUT}" | ||
|
|
||
| docker: | ||
| needs: check-labels | ||
| name: ${{ matrix.title }} | ||
| runs-on: ${{ matrix.runs-on }} | ||
| if: needs.check-labels.outputs.ci-extra == 'true' | ||
| timeout-minutes: 75 | ||
| strategy: | ||
| fail-fast: false | ||
| matrix: | ||
| include: | ||
| - image: conda-cpp | ||
| run-options: >- | ||
| -e ARROW_USE_MESON=ON | ||
| runs-on: ubuntu-latest | ||
| title: AMD64 Ubuntu Meson | ||
| env: | ||
| ARCHERY_DEBUG: 1 | ||
| ARROW_ENABLE_TIMING_TESTS: OFF | ||
| # DOCKER_VOLUME_PREFIX: ".docker/" | ||
| steps: | ||
| - name: Checkout Arrow | ||
| uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | ||
| with: | ||
| fetch-depth: 0 | ||
| submodules: recursive | ||
| - name: Cache Docker Volumes | ||
| uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3 | ||
| with: | ||
| path: .docker | ||
| key: extra-${{ matrix.image }}-${{ hashFiles('cpp/**') }} | ||
| restore-keys: extra-${{ matrix.image }}- | ||
| - name: Setup Python | ||
| uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0 | ||
| with: | ||
| python-version: 3 | ||
| - name: Setup Archery | ||
| run: python3 -m pip install -e dev/archery[docker] | ||
| - name: Execute Docker Build | ||
| env: | ||
| ARCHERY_DOCKER_USER: ${{ secrets.DOCKERHUB_USER }} | ||
| ARCHERY_DOCKER_PASSWORD: ${{ secrets.DOCKERHUB_TOKEN }} | ||
| run: | | ||
| # GH-40558: reduce ASLR to avoid ASAN/LSAN crashes | ||
| sudo sysctl -w vm.mmap_rnd_bits=28 | ||
| source ci/scripts/util_enable_core_dumps.sh | ||
| archery docker run ${{ matrix.run-options || '' }} ${{ matrix.image }} | ||
| - name: Docker Push | ||
| if: >- | ||
| success() && | ||
| github.event_name == 'push' && | ||
| github.repository == 'apache/arrow' && | ||
| github.ref_name == 'main' | ||
| env: | ||
| ARCHERY_DOCKER_USER: ${{ secrets.DOCKERHUB_USER }} | ||
| ARCHERY_DOCKER_PASSWORD: ${{ secrets.DOCKERHUB_TOKEN }} | ||
| continue-on-error: true | ||
| run: archery docker push ${{ matrix.image }} | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -287,6 +287,11 @@ fi | |
| if [ "${ARROW_USE_MESON:-OFF}" = "ON" ]; then | ||
| time meson compile -j ${ARROW_BUILD_PARALLEL} | ||
| meson install | ||
| # Remove all added files in cpp/subprojects/ because they may have | ||
| # unreadable permissions on Docker host. | ||
| pushd "${source_dir}" | ||
| meson subprojects purge --confirm --include-cache | ||
| popd | ||
|
Comment on lines
290
to
294
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @WillAyd This is a workaround.
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Hmm... This isn't a workaround... CI failed with this...
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is this still required?
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yes. If we don't have this, (I think that Meson should not change the source directory.)
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Hmm not sure I understand - Meson strictly forbids changes to the source directory. Not a blocker for now though - can be cleaned up later if needed
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Here is a shell script that shows that Meson may change the source directory: set -eux
rm -rf arrow
git clone --recursive https://github.com/apache/arrow.git
cd arrow
ls -lahR cpp/subprojects > before.txt
meson setup cpp.build cpp > /dev/null
meson compile -C cpp.build > /dev/null
ls -lahR cpp/subprojects > after.txt
diff -u {before,after}.txtOutput: There is a And this is an unreadable file:
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This was executed on
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ah OK - I was excluding subprojects from my consideration of the source directory, as Meson does unpack third party dependencies to that directory during the configure stage (i.e. before the build directory even exists) |
||
| else | ||
| : ${CMAKE_BUILD_PARALLEL_LEVEL:=${ARROW_BUILD_PARALLEL}} | ||
| export CMAKE_BUILD_PARALLEL_LEVEL | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.