Use the same parameter names in the two declarations of boost::swap() #157
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 2020-2021 Peter Dimov | |
# Copyright 2021 Andrey Semashev | |
# Copyright 2021-2024 Alexander Grund | |
# Copyright 2022-2025 James E. King III | |
# Copyright 2023 Alan de Freitas | |
# | |
# Distributed under the Boost Software License, Version 1.0. | |
# (See accompanying file LICENSE_1_0.txt or copy at http://boost.org/LICENSE_1_0.txt) | |
# | |
# This workflow uses the Boost.CI reusable workflow which builds a variety of | |
# configurations of your project, runs tests, and generates code coverage reports. | |
# | |
# To use it, copy this file into your repository as `.github/workflows/ci.yml` and | |
# customize it appropriately. | |
# | |
--- | |
name: Boost.CI | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
- develop | |
- bugfix/** | |
- feature/** | |
- fix/** | |
- pr/** | |
paths-ignore: | |
- LICENSE | |
- meta/** | |
- README.md | |
jobs: | |
call-boost-ci: | |
name: Run Boost.CI | |
uses: boostorg/boost-ci/.github/workflows/reusable.yml@master | |
with: | |
# These compilers fail. | |
exclude_compiler: 'clang-3.5,clang-3.6,clang-3.7,clang-3.8,gcc-4.8,gcc-4.9' | |
secrets: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
COVERITY_SCAN_NOTIFICATION_EMAIL: ${{ secrets.COVERITY_SCAN_NOTIFICATION_EMAIL }} | |
COVERITY_SCAN_TOKEN: ${{ secrets.COVERITY_SCAN_TOKEN }} | |
antora: | |
name: Antora docs | |
strategy: | |
matrix: | |
include: | |
- { name: Windows, os: windows-latest } | |
- { name: Ubuntu, os: ubuntu-latest } | |
- { name: macOS, os: macos-latest } | |
runs-on: ${{ matrix.os }} | |
defaults: | |
run: | |
shell: bash | |
steps: | |
- name: Install packages | |
uses: alandefreitas/cpp-actions/[email protected] | |
with: | |
apt-get: git cmake | |
- name: Clone Boost.DynamicBitset | |
uses: actions/checkout@v4 | |
- name: Clone Boost | |
uses: alandefreitas/cpp-actions/[email protected] | |
id: boost-clone | |
with: | |
branch: ${{ (github.ref_name == 'master' && github.ref_name) || 'develop' }} | |
boost-dir: ../boost-source | |
scan-modules-dir: . | |
scan-modules-ignore: dynamic_bitset | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
- name: Setup Ninja | |
if: runner.os == 'Windows' | |
uses: seanmiddleditch/gha-setup-ninja@v5 | |
- name: Build Antora docs | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
git config --global --add safe.directory "$(pwd)" | |
cd .. | |
BOOST_SRC_DIR="$(pwd)/boost-source" | |
export BOOST_SRC_DIR | |
cd dynamic_bitset | |
cd doc | |
bash ./build_docs.sh | |
# Antora returns zero even if it fails, so we check if the site directory exists. | |
if [ ! -d "build/site" ] | |
then | |
echo "Antora build failed" | |
exit 1 | |
fi | |
- name: Create Antora docs artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: antora-docs-${{ matrix.name }} | |
path: doc/build/site |