Cleanup: Fix some warnings #34
Workflow file for this run
This file contains 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
name: CI | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
jobs: | |
linux: | |
name: Linux | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- compiler: clang | |
cxxcompiler: clang++ | |
- compiler: gcc | |
cxxcompiler: g++ | |
runs-on: ubuntu-latest | |
env: | |
CC: ${{ matrix.compiler }} | |
CXX: ${{ matrix.cxxcompiler }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install dependencies | |
run: | | |
echo "::group::Update apt" | |
sudo apt-get update | |
echo "::endgroup::" | |
echo "::group::Install dependencies" | |
sudo apt-get install -y --no-install-recommends \ | |
libboost-dev \ | |
# EOF | |
echo "::endgroup::" | |
env: | |
DEBIAN_FRONTEND: noninteractive | |
- name: Install GCC problem matcher | |
uses: ammaraskar/gcc-problem-matcher@master | |
- name: Build | |
run: | | |
mkdir build | |
cd build | |
echo "::group::CMake" | |
cmake .. | |
echo "::endgroup::" | |
echo "::group::Build" | |
echo "Running on $(nproc) cores" | |
cmake --build . -j $(nproc) | |
echo "::endgroup::" | |
macos: | |
name: Mac OS | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- arch: x64 | |
full_arch: x86_64 | |
runs-on: macos-latest | |
env: | |
MACOSX_DEPLOYMENT_TARGET: 10.9 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Prepare cache key | |
id: key | |
run: | | |
echo "image=$ImageOS-$ImageVersion" >> $GITHUB_OUTPUT | |
- name: Enable vcpkg cache | |
uses: actions/cache@v3 | |
with: | |
path: /usr/local/share/vcpkg/installed | |
key: ${{ steps.key.outputs.image }}-vcpkg-${{ matrix.arch }}-1 # Increase the number whenever dependencies are modified | |
restore-keys: | | |
${{ steps.key.outputs.image }}-vcpkg-${{ matrix.arch }} | |
- name: Prepare vcpkg | |
run: | | |
vcpkg install --triplet=${{ matrix.arch }}-osx \ | |
boost-bimap \ | |
boost-date-time \ | |
boost-foreach \ | |
# EOF | |
- name: Install GCC problem matcher | |
uses: ammaraskar/gcc-problem-matcher@master | |
- name: Build | |
run: | | |
mkdir build | |
cd build | |
echo "::group::CMake" | |
cmake ${GITHUB_WORKSPACE} \ | |
-DCMAKE_OSX_ARCHITECTURES=${{ matrix.full_arch }} \ | |
-DVCPKG_TARGET_TRIPLET=${{ matrix.arch }}-osx \ | |
-DCMAKE_TOOLCHAIN_FILE=/usr/local/share/vcpkg/scripts/buildsystems/vcpkg.cmake \ | |
# EOF | |
echo "::endgroup::" | |
echo "::group::Build" | |
echo "Running on $(sysctl -n hw.logicalcpu) cores" | |
cmake --build . -j $(sysctl -n hw.logicalcpu) | |
echo "::endgroup::" | |
windows: | |
name: Windows | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [windows-latest, windows-2019] | |
arch: [x86, x64] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Prepare cache key | |
id: key | |
shell: powershell | |
run: | | |
# Work around caching failure with GNU tar | |
New-Item -Type Junction -Path vcpkg -Target c:\vcpkg | |
Write-Output "image=$env:ImageOS-$env:ImageVersion" >> $env:GITHUB_OUTPUT | |
- name: Enable vcpkg cache | |
uses: actions/cache@v3 | |
with: | |
path: vcpkg/installed | |
key: ${{ steps.key.outputs.image }}-vcpkg-${{ matrix.arch }}-1 # Increase the number whenever dependencies are modified | |
restore-keys: | | |
${{ steps.key.outputs.image }}-vcpkg-${{ matrix.arch }} | |
- name: Prepare vcpkg | |
shell: bash | |
run: | | |
vcpkg install --triplet=${{ matrix.arch }}-windows-static \ | |
boost-bimap \ | |
boost-date-time \ | |
boost-foreach \ | |
libpng \ | |
# EOF | |
- name: Install MSVC problem matcher | |
uses: ammaraskar/msvc-problem-matcher@master | |
- name: Configure developer command prompt for ${{ matrix.arch }} | |
uses: ilammy/msvc-dev-cmd@v1 | |
with: | |
arch: ${{ matrix.arch }} | |
- name: Build | |
shell: bash | |
run: | | |
mkdir build | |
cd build | |
echo "::group::CMake" | |
cmake .. \ | |
-GNinja \ | |
-DVCPKG_TARGET_TRIPLET=${{ matrix.arch }}-windows-static \ | |
-DCMAKE_TOOLCHAIN_FILE="c:\vcpkg\scripts\buildsystems\vcpkg.cmake" \ | |
# EOF | |
echo "::endgroup::" | |
echo "::group::Build" | |
cmake --build . | |
echo "::endgroup::" |