[parallel] Fix element_type deduction in minmax algorithms #943
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Copyright (c) 2026 The STE||AR Group | |
| # | |
| # SPDX-License-Identifier: BSL-1.0 | |
| # Distributed under the Boost Software License, Version 1.0. (See accompanying | |
| # file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) | |
| name: Documentation Build | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - master | |
| - 'release**' | |
| workflow_dispatch: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.ref || github.sha }} | |
| cancel-in-progress: ${{ github.event_name == 'pull_request' }} | |
| jobs: | |
| build-documentation: | |
| runs-on: ubuntu-latest | |
| container: stellargroup/build_env:17 | |
| permissions: | |
| actions: read | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Configure | |
| shell: bash | |
| run: | | |
| cmake \ | |
| -Bbuild \ | |
| -GNinja \ | |
| -DCMAKE_BUILD_TYPE=Release \ | |
| -DHPX_WITH_MALLOC=system \ | |
| -DHPX_WITH_FETCH_ASIO=ON \ | |
| -DHPX_WITH_EXAMPLES=ON \ | |
| -DHPX_WITH_TESTS=OFF \ | |
| -DHPX_WITH_DOCUMENTATION=ON \ | |
| -DHPX_WITH_DOCUMENTATION_OUTPUT_FORMATS="html;singlehtml;latexpdf" | |
| - name: Build Documentation (HTML) | |
| timeout-minutes: 120 | |
| shell: bash | |
| run: cmake --build build --target docs-html | |
| - name: Build Documentation (Single HTML) | |
| timeout-minutes: 120 | |
| shell: bash | |
| run: cmake --build build --target docs-singlehtml | |
| - name: Build Documentation (PDF) | |
| timeout-minutes: 120 | |
| shell: bash | |
| run: cmake --build build --target docs-latexpdf | |
| - name: Upload Documentation Artifacts | |
| uses: actions/upload-artifact@v7 | |
| with: | |
| name: documentation-artifacts | |
| path: | | |
| build/share/hpx/docs/html | |
| build/share/hpx/docs/singlehtml | |
| build/share/hpx/docs/latexpdf/latex/HPX.pdf |