2022-11-21 21:56:50 +00:00
|
|
|
name: Build and Test
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- "*"
|
|
|
|
pull_request:
|
|
|
|
branches-ignore:
|
|
|
|
- "no-ci-*"
|
|
|
|
|
|
|
|
env:
|
|
|
|
VCPKG_BINARY_SOURCES: "clear;nuget,GitHub,readwrite"
|
|
|
|
VCPKG_NUGET_REPOSITORY: https://github.com/mathisloge/vcpkg-nuget.git
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
checkSource:
|
|
|
|
name: Check Source Code
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
2024-03-12 13:24:34 +00:00
|
|
|
- uses: actions/checkout@v4
|
2024-03-12 14:29:59 +00:00
|
|
|
- uses: actions/setup-python@v5
|
2022-11-21 21:56:50 +00:00
|
|
|
with:
|
2024-03-12 10:58:56 +00:00
|
|
|
python-version: '3.10'
|
2024-03-12 13:28:14 +00:00
|
|
|
- uses: pre-commit/action@v3.0.1
|
2022-11-21 21:56:50 +00:00
|
|
|
|
|
|
|
buildAndTest:
|
2023-03-17 17:51:15 +00:00
|
|
|
name: >-
|
|
|
|
Build & Test
|
|
|
|
(${{ matrix.os }})
|
|
|
|
(C++ ${{ matrix.cxx-standard }})
|
2024-04-26 17:58:32 +00:00
|
|
|
${{ startsWith(matrix.os, 'macos-') && (matrix.os == 'macos-14' && '(ARM64)' || '(AMD64)') || '' }}
|
2022-11-26 15:10:16 +00:00
|
|
|
needs: checkSource
|
2022-11-21 21:56:50 +00:00
|
|
|
strategy:
|
2022-11-26 15:40:16 +00:00
|
|
|
fail-fast: false
|
2022-11-21 21:56:50 +00:00
|
|
|
matrix:
|
2024-04-26 17:58:32 +00:00
|
|
|
os:
|
|
|
|
- macos-13
|
|
|
|
- macos-14
|
|
|
|
- ubuntu-latest
|
|
|
|
- windows-latest
|
|
|
|
cxx-standard:
|
|
|
|
- 17
|
2022-11-21 21:56:50 +00:00
|
|
|
include:
|
2024-04-26 17:58:32 +00:00
|
|
|
- os: macos-13
|
|
|
|
mono: mono
|
|
|
|
- os: macos-14
|
2022-11-21 21:56:50 +00:00
|
|
|
mono: mono
|
2024-04-26 17:58:32 +00:00
|
|
|
- os: ubuntu-latest
|
2022-11-21 21:56:50 +00:00
|
|
|
mono: mono
|
2023-03-17 17:51:15 +00:00
|
|
|
- os: windows-latest
|
2022-11-21 21:56:50 +00:00
|
|
|
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: "Install required system packages"
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
if [ "$RUNNER_OS" == "Windows" ]; then
|
|
|
|
choco install ninja OpenCppCoverage
|
|
|
|
echo "C:\Program Files\OpenCppCoverage" >> ${GITHUB_PATH}
|
|
|
|
elif [ "$RUNNER_OS" == "Linux" ]; then
|
|
|
|
sudo apt update
|
|
|
|
sudo apt install -y gperf libxxf86vm-dev ninja-build postgresql-client lcov autoconf-archive
|
|
|
|
else
|
|
|
|
brew install automake ninja lcov autoconf-archive
|
|
|
|
fi
|
|
|
|
|
|
|
|
- uses: ilammy/msvc-dev-cmd@v1
|
|
|
|
if: runner.os == 'Windows'
|
2024-03-12 10:58:56 +00:00
|
|
|
|
2022-11-21 21:56:50 +00:00
|
|
|
- name: checkout mapnik
|
2024-03-12 13:24:34 +00:00
|
|
|
uses: actions/checkout@v4
|
2022-11-21 21:56:50 +00:00
|
|
|
with:
|
|
|
|
submodules: "recursive"
|
|
|
|
|
|
|
|
- name: setup vcpkg
|
|
|
|
uses: ./.github/actions/setup_vcpkg
|
|
|
|
with:
|
2024-04-16 08:24:55 +00:00
|
|
|
vcpkg-sha: b4a3d89125e45bc8f80fb94bef9761d4f4e14fb9
|
2022-11-21 21:56:50 +00:00
|
|
|
nuget-source: https://nuget.pkg.github.com/mapnik/index.json
|
|
|
|
nuget-username: ${{ github.actor }}
|
|
|
|
nuget-pat: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
mono: ${{ matrix.mono }}
|
|
|
|
|
2024-05-05 02:59:44 +00:00
|
|
|
- name: Set PRESET environment variable to lower case runner OS
|
2023-03-17 17:51:15 +00:00
|
|
|
shell: bash
|
2022-11-21 21:56:50 +00:00
|
|
|
run: |
|
2024-05-05 02:59:44 +00:00
|
|
|
LC_RUNNER_OS=$(echo "${RUNNER_OS}" | perl -ne "print lc")
|
|
|
|
if [ "${RUNNER_OS}" == "macOS" ]; then
|
|
|
|
MACOS_ARCH=${{ (matrix.os == 'macos-14' || matrix.os == 'macos-latest') && 'arm64' || 'x64' }}
|
|
|
|
echo "PRESET=${LC_RUNNER_OS}-ci-${MACOS_ARCH}" >> ${GITHUB_ENV}
|
|
|
|
else
|
|
|
|
echo "PRESET=${LC_RUNNER_OS}-ci" >> ${GITHUB_ENV}
|
|
|
|
fi
|
2022-11-21 21:56:50 +00:00
|
|
|
|
2024-04-26 20:16:47 +00:00
|
|
|
- name: Ensure libtool is installed on macOS
|
|
|
|
shell: bash
|
|
|
|
run: brew install libtool
|
|
|
|
if: runner.os == 'macOS'
|
|
|
|
|
2022-11-21 21:56:50 +00:00
|
|
|
- name: Configure CMake
|
2023-03-17 17:51:15 +00:00
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
cmake \
|
2024-04-19 13:13:10 +00:00
|
|
|
-DBUILD_SHARED_LIBS:BOOL='ON' \
|
2024-04-16 08:24:55 +00:00
|
|
|
-DCMAKE_CXX_STANDARD=${{ matrix.cxx-standard }} \
|
2024-04-19 13:13:10 +00:00
|
|
|
-DUSE_MEMORY_MAPPED_FILE:BOOL='ON' \
|
2023-03-19 21:05:58 +00:00
|
|
|
-LA \
|
2023-03-17 17:51:15 +00:00
|
|
|
--preset ${{ env.PRESET }}
|
2022-11-21 21:56:50 +00:00
|
|
|
|
|
|
|
- name: Build
|
|
|
|
run: cmake --build --preset ${{ env.PRESET }}
|
|
|
|
|
|
|
|
- name: Run Tests
|
|
|
|
uses: ./.github/actions/run_tests
|
|
|
|
with:
|
|
|
|
cmake-preset: ${{ env.PRESET }}
|