mirror of
https://github.com/jbeder/yaml-cpp.git
synced 2025-09-08 12:21:17 +00:00

* CMake: Add option to set the package install dir. * CMake: Fix generated config. - `YAML_CPP_SHARED_LIBS_BUILT` should not be set with a `PATH_VAR` as it would always evaluate to true. - `YAML_CPP_LIBRARIES` should used the exported target name including the namespace, but `check_required_components` shouldn't. - Use `CMAKE_CURRENT_LIST_DIR` to find the target file, instead of a `PATH_VAR`. Package managers such as vcpkg move CMake configs after installing. * CI: Test the generated CMake package. * CMake: Create add a deprecated yaml-cpp target. This target is meant to provide compatibility with versions prior to 0.8.0. * CMake: mark the yaml-cpp target as IMPORTED. --------- Co-authored-by: Jesse Beder <jbeder+github@gmail.com>
123 lines
3.4 KiB
YAML
123 lines
3.4 KiB
YAML
name: Github PR
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
pull_request:
|
|
branches: [ master ]
|
|
workflow_dispatch:
|
|
permissions: read-all
|
|
defaults:
|
|
run:
|
|
shell: bash
|
|
jobs:
|
|
cmake-build:
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
os: [ubuntu-latest, windows-latest, macos-latest]
|
|
cxx_standard: [11, 17, 20]
|
|
build: [static, shared]
|
|
generator: ["Default Generator", "MinGW Makefiles"]
|
|
exclude:
|
|
- os: macos-latest
|
|
build: shared
|
|
- os: macos-latest
|
|
generator: "MinGW Makefiles"
|
|
- os: ubuntu-latest
|
|
generator: "MinGW Makefiles"
|
|
env:
|
|
YAML_BUILD_SHARED_LIBS: ${{ matrix.build == 'shared' && 'ON' || 'OFF' }}
|
|
CMAKE_GENERATOR: >-
|
|
${{format(matrix.generator != 'Default Generator' && '-G "{0}"' || '', matrix.generator)}}
|
|
CMAKE_INSTALL_PREFIX: "${{ github.workspace }}/install-prefix"
|
|
CMAKE_BUILD_TYPE: Debug
|
|
runs-on: ${{ matrix.os }}
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Configure
|
|
run: |
|
|
cmake \
|
|
${{ env.CMAKE_GENERATOR }} \
|
|
-S "${{ github.workspace }}" \
|
|
-B build \
|
|
-D CMAKE_CXX_STANDARD=${{ matrix.cxx_standard }} \
|
|
-D CMAKE_INSTALL_PREFIX="${{ env.CMAKE_INSTALL_PREFIX }}" \
|
|
-D CMAKE_BUILD_TYPE=${{ env.CMAKE_BUILD_TYPE }} \
|
|
-D YAML_BUILD_SHARED_LIBS=${{ env.YAML_BUILD_SHARED_LIBS }} \
|
|
-D YAML_CPP_BUILD_TESTS=ON
|
|
|
|
- name: Build
|
|
run: |
|
|
cmake \
|
|
--build build \
|
|
--config ${{ env.CMAKE_BUILD_TYPE }} \
|
|
--verbose \
|
|
--parallel
|
|
|
|
- name: Run Tests
|
|
shell: bash
|
|
run: |
|
|
ctest \
|
|
--test-dir build \
|
|
--build-config ${{ env.CMAKE_BUILD_TYPE }} \
|
|
--output-on-failure \
|
|
--verbose
|
|
|
|
- name: Install
|
|
run: cmake --install build --config ${{ env.CMAKE_BUILD_TYPE }}
|
|
|
|
- name: Configure CMake package test
|
|
run: |
|
|
cmake \
|
|
${{ env.CMAKE_GENERATOR }} \
|
|
-S "${{ github.workspace }}/test/cmake" \
|
|
-B consumer-build \
|
|
-D CMAKE_BUILD_TYPE=${{ env.CMAKE_BUILD_TYPE }} \
|
|
-D CMAKE_PREFIX_PATH="${{ env.CMAKE_INSTALL_PREFIX }}"
|
|
|
|
- name: Build CMake package test
|
|
run: |
|
|
cmake \
|
|
--build consumer-build \
|
|
--config ${{ env.CMAKE_BUILD_TYPE }} \
|
|
--verbose
|
|
|
|
bazel-build:
|
|
strategy:
|
|
matrix:
|
|
os: [ubuntu-latest, windows-latest, macos-latest]
|
|
runs-on: ${{ matrix.os }}
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Build
|
|
run: |
|
|
cd "${{ github.workspace }}"
|
|
bazel build :all
|
|
|
|
- name: Test
|
|
run: |
|
|
cd "${{ github.workspace }}"
|
|
bazel test test
|
|
|
|
bzlmod-build:
|
|
strategy:
|
|
matrix:
|
|
os: [ubuntu-latest, windows-latest, macos-latest]
|
|
runs-on: ${{ matrix.os }}
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Build
|
|
shell: bash
|
|
run: |
|
|
cd "${{ github.workspace }}"
|
|
bazel build --enable_bzlmod :all
|
|
|
|
- name: Test
|
|
shell: bash
|
|
run: |
|
|
cd "${{ github.workspace }}"
|
|
bazel test --enable_bzlmod test
|