forked from mpusz/mp-units
278 lines
10 KiB
YAML
278 lines
10 KiB
YAML
# The MIT License (MIT)
|
|
#
|
|
# Copyright (c) 2018 Mateusz Pusz
|
|
#
|
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
# of this software and associated documentation files (the "Software"), to deal
|
|
# in the Software without restriction, including without limitation the rights
|
|
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
# copies of the Software, and to permit persons to whom the Software is
|
|
# furnished to do so, subject to the following conditions:
|
|
#
|
|
# The above copyright notice and this permission notice shall be included in all
|
|
# copies or substantial portions of the Software.
|
|
#
|
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
# SOFTWARE.
|
|
|
|
name: CMake Test Package CI
|
|
|
|
on:
|
|
push:
|
|
paths-ignore:
|
|
- "docs/**"
|
|
- "example/**"
|
|
- "test/**"
|
|
pull_request:
|
|
paths-ignore:
|
|
- "docs/**"
|
|
- "example/**"
|
|
- "test/**"
|
|
|
|
jobs:
|
|
test_package:
|
|
name: "C++${{ matrix.std }} ${{ matrix.config.name }} ${{ matrix.build_type }}"
|
|
runs-on: ${{ matrix.config.os }}
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
std: [20, 23]
|
|
config:
|
|
# - {
|
|
# name: "MSVC 14.2",
|
|
# os: windows-2019,
|
|
# compiler: { type: VISUAL, version: 16, cc: "", cxx: "" },
|
|
# }
|
|
# - {
|
|
# name: "MSVC 14.3",
|
|
# os: windows-2022,
|
|
# compiler: { type: MSVC, version: 193, cc: "", cxx: "" },
|
|
# }
|
|
- {
|
|
name: "GCC-11",
|
|
os: ubuntu-22.04,
|
|
compiler:
|
|
{
|
|
type: GCC,
|
|
version: 11,
|
|
cc: "gcc-11",
|
|
cxx: "g++-11",
|
|
},
|
|
}
|
|
- {
|
|
name: "GCC-12",
|
|
os: ubuntu-22.04,
|
|
compiler:
|
|
{
|
|
type: GCC,
|
|
version: 12,
|
|
cc: "gcc-12",
|
|
cxx: "g++-12",
|
|
},
|
|
}
|
|
- {
|
|
name: "GCC-13",
|
|
os: ubuntu-22.04,
|
|
compiler:
|
|
{
|
|
type: GCC,
|
|
version: 13,
|
|
cc: "gcc-13",
|
|
cxx: "g++-13",
|
|
},
|
|
}
|
|
- {
|
|
name: "Clang-16",
|
|
os: ubuntu-22.04,
|
|
compiler:
|
|
{
|
|
type: CLANG,
|
|
version: 16,
|
|
cc: "clang-16",
|
|
cxx: "clang++-16",
|
|
},
|
|
lib: "libc++",
|
|
}
|
|
- {
|
|
name: "Clang-17",
|
|
os: ubuntu-22.04,
|
|
compiler:
|
|
{
|
|
type: CLANG,
|
|
version: 17,
|
|
cc: "clang-17",
|
|
cxx: "clang++-17",
|
|
},
|
|
lib: "libc++",
|
|
conan-config: "",
|
|
}
|
|
# - {
|
|
# name: "Apple Clang 13",
|
|
# os: macos-11,
|
|
# compiler:
|
|
# {
|
|
# type: APPLE_CLANG,
|
|
# version: "13.0",
|
|
# cc: "clang",
|
|
# cxx: "clang++",
|
|
# },
|
|
# }
|
|
build_type: ["Release", "Debug"]
|
|
|
|
env:
|
|
CC: ${{ matrix.config.compiler.cc }}
|
|
CXX: ${{ matrix.config.compiler.cxx }}
|
|
|
|
steps:
|
|
- name: Downcase 'build_type'
|
|
id: build_type
|
|
uses: ASzc/change-string-case-action@v5
|
|
with:
|
|
string: ${{ matrix.build_type }}
|
|
- uses: actions/checkout@v4
|
|
- name: Cache Conan data
|
|
uses: actions/cache@v3
|
|
env:
|
|
cache-name: cache-conan-data
|
|
with:
|
|
path: ~/.conan2/p
|
|
key: build-${{ matrix.config.os }}-${{ matrix.config.compiler.type }}-${{ matrix.config.lib }}-${{ matrix.build_type }}-${{ matrix.config.compiler.version }}-${{ matrix.std }}
|
|
restore-keys: |
|
|
build-${{ matrix.config.os }}-${{ matrix.config.compiler.type }}-${{ matrix.config.lib }}-${{ matrix.build_type }}-${{ matrix.config.compiler.version }}-${{ matrix.std }}
|
|
build-${{ matrix.config.os }}-${{ matrix.config.compiler.type }}-${{ matrix.config.lib }}-${{ matrix.build_type }}-${{ matrix.config.compiler.version }}-
|
|
build-${{ matrix.config.os }}-${{ matrix.config.compiler.type }}-${{ matrix.config.lib }}-${{ matrix.build_type }}-
|
|
build-${{ matrix.config.os }}-${{ matrix.config.compiler.type }}-${{ matrix.config.lib }}-
|
|
build-${{ matrix.config.os }}-${{ matrix.config.compiler.type }}-
|
|
build-${{ matrix.config.os }}-
|
|
- name: Install gcc-13
|
|
if: matrix.config.compiler.type == 'GCC' && matrix.config.compiler.version == '13'
|
|
shell: bash
|
|
run: |
|
|
sudo apt install -y g++-${{ matrix.config.compiler.version }}
|
|
- name: Install Clang
|
|
if: matrix.config.compiler.type == 'CLANG'
|
|
shell: bash
|
|
working-directory: ${{ env.HOME }}
|
|
run: |
|
|
wget https://apt.llvm.org/llvm.sh
|
|
chmod +x llvm.sh
|
|
sudo ./llvm.sh ${{ matrix.config.compiler.version }}
|
|
- name: Install Libc++
|
|
if: matrix.config.compiler.type == 'CLANG' && matrix.config.lib == 'libc++'
|
|
shell: bash
|
|
run: |
|
|
sudo apt install -y libc++-${{ matrix.config.compiler.version }}-dev libc++abi-${{ matrix.config.compiler.version }}-dev libunwind-${{ matrix.config.compiler.version }}-dev
|
|
- name: Select Xcode 13.0
|
|
if: matrix.config.compiler.type == 'APPLE_CLANG' && matrix.config.compiler.version == '13.0'
|
|
shell: bash
|
|
run: |
|
|
sudo xcode-select -s "/Applications/Xcode_13.0.app"
|
|
- name: Install Ninja
|
|
shell: bash
|
|
run: |
|
|
if [ $RUNNER_OS == 'Linux' ]; then
|
|
sudo apt install -y ninja-build
|
|
elif [ $RUNNER_OS == 'Windows' ]; then
|
|
choco install ninja
|
|
elif [ $RUNNER_OS == 'macOS' ]; then
|
|
brew update
|
|
brew install ninja
|
|
else
|
|
echo "'$RUNNER_OS' not supported"
|
|
exit 1
|
|
fi
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v4
|
|
with:
|
|
python-version: "3.8"
|
|
- name: Install Conan
|
|
shell: bash
|
|
run: |
|
|
pip install -U conan
|
|
- name: Configure Conan
|
|
shell: bash
|
|
run: |
|
|
conan profile detect --force
|
|
conan remote add artifactory https://mpusz.jfrog.io/artifactory/api/conan/conan-oss
|
|
if [[ "${{ matrix.config.compiler.type }}" == "CLANG" ]]; then
|
|
sed -i.backup '/^\[settings\]$/,/^\[/ s/^compiler.libcxx=.*/compiler.libcxx=${{ matrix.config.lib }}/' ~/.conan2/profiles/default
|
|
fi
|
|
sed -i.backup '/^\[settings\]$/,/^\[/ s/^compiler.cppstd=.*/compiler.cppstd=${{ matrix.std }}/' ~/.conan2/profiles/default
|
|
sed -i.backup '/^\[settings\]$/,/^\[/ s/^build_type=.*/build_type=${{ matrix.build_type }}/' ~/.conan2/profiles/default
|
|
conan profile show -pr default
|
|
- name: Install Conan dependencies
|
|
shell: bash
|
|
run: |
|
|
conan install . -b missing -c tools.cmake.cmaketoolchain:generator="Ninja Multi-Config" -c user.build:all=False
|
|
mv CMakeUserPresets.json src
|
|
- name: Configure mp-units CMake
|
|
if: matrix.config.compiler.type == 'VISUAL' || matrix.config.compiler.type == 'MSVC'
|
|
shell: cmd
|
|
working-directory: src
|
|
run: |
|
|
cmake --version
|
|
call ..\build\generators\conanvcvars.bat
|
|
cmake --preset conan-default -DCMAKE_INSTALL_PREFIX=../out
|
|
- name: Configure mp-units CMake
|
|
if: matrix.config.compiler.type != 'VISUAL' && matrix.config.compiler.type != 'MSVC'
|
|
shell: bash
|
|
working-directory: src
|
|
run: |
|
|
cmake --version
|
|
cmake --preset conan-default -DCMAKE_INSTALL_PREFIX=../out
|
|
- name: Install mp-units
|
|
shell: bash
|
|
working-directory: src
|
|
run: |
|
|
cmake --build --preset conan-${{ steps.build_type.outputs.lowercase }} --target install
|
|
- name: Provide dependencies for test_package
|
|
shell: bash
|
|
working-directory: test_package
|
|
run: |
|
|
cp ../src/CMakeUserPresets.json .
|
|
- name: Build test_package CMake (local build)
|
|
if: matrix.config.compiler.type == 'VISUAL' || matrix.config.compiler.type == 'MSVC'
|
|
shell: cmd
|
|
working-directory: test_package
|
|
run: |
|
|
call ..\build\generators\conanvcvars.bat
|
|
cmake --preset conan-default -Dmp-units_DIR=../build -Bbuild/local
|
|
cmake --build build/local --config ${{ matrix.build_type }}
|
|
- name: Build test_package CMake (local build)
|
|
if: matrix.config.compiler.type != 'VISUAL' && matrix.config.compiler.type != 'MSVC'
|
|
shell: bash
|
|
working-directory: test_package
|
|
run: |
|
|
cmake --preset conan-default -Dmp-units_DIR=../build -Bbuild/local
|
|
cmake --build build/local --config ${{ matrix.build_type }}
|
|
- name: Run test_package (local build)
|
|
shell: bash
|
|
working-directory: test_package/build/local/${{ matrix.build_type }}
|
|
run: |
|
|
./test_package
|
|
- name: Build test_package CMake (installation)
|
|
if: matrix.config.compiler.type == 'VISUAL' || matrix.config.compiler.type == 'MSVC'
|
|
shell: cmd
|
|
working-directory: test_package
|
|
run: |
|
|
call ..\build\generators\conanvcvars.bat
|
|
cmake --preset conan-default -DCMAKE_INSTALL_PREFIX=../out -Bbuild/install
|
|
cmake --build build/install --config ${{ matrix.build_type }}
|
|
- name: Build test_package CMake (installation)
|
|
if: matrix.config.compiler.type != 'VISUAL' && matrix.config.compiler.type != 'MSVC'
|
|
shell: bash
|
|
working-directory: test_package
|
|
run: |
|
|
cmake --preset conan-default -DCMAKE_INSTALL_PREFIX=../out -Bbuild/install
|
|
cmake --build build/install --config ${{ matrix.build_type }}
|
|
- name: Run test_package (installation)
|
|
shell: bash
|
|
working-directory: test_package/build/install/${{ matrix.build_type }}
|
|
run: |
|
|
./test_package
|