88052447b9
add more hooks add workflow
91 lines
2.5 KiB
YAML
91 lines
2.5 KiB
YAML
name: Build and Test
|
|
|
|
on:
|
|
push:
|
|
branches-ignore:
|
|
- "no-ci-*"
|
|
pull_request:
|
|
branches:
|
|
- "**"
|
|
|
|
jobs:
|
|
checkSource:
|
|
name: Check Source Code
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: actions/setup-python@v3
|
|
- uses: pre-commit/action@v3.0.0
|
|
|
|
windows:
|
|
needs: checkSource
|
|
name: Windows memory mapped
|
|
uses: ./.github/workflows/windows.yml
|
|
with:
|
|
VCPKG_SHA: f6af75acc923c833a5620943e3fc7d5e4930f0df
|
|
NUGET_REGISTRY: https://nuget.pkg.github.com/mapnik/index.json
|
|
NUGET_USERNAME: mapnik
|
|
USE_MEMORY_MAPPED_FILE: "ON"
|
|
secrets:
|
|
NUGET_REGISTRY_PAT: ${{ secrets.VCPKG_CACHE_PAT }}
|
|
|
|
windows-mmf-off:
|
|
needs: checkSource
|
|
name: Windows file based
|
|
uses: ./.github/workflows/windows.yml
|
|
with:
|
|
VCPKG_SHA: f6af75acc923c833a5620943e3fc7d5e4930f0df
|
|
NUGET_REGISTRY: https://nuget.pkg.github.com/mapnik/index.json
|
|
NUGET_USERNAME: mapnik
|
|
USE_MEMORY_MAPPED_FILE: "OFF"
|
|
secrets:
|
|
NUGET_REGISTRY_PAT: ${{ secrets.VCPKG_CACHE_PAT }}
|
|
|
|
ubuntu:
|
|
needs: checkSource
|
|
name: Linux memory mapped
|
|
uses: ./.github/workflows/ubuntu.yml
|
|
with:
|
|
VCPKG_SHA: f6af75acc923c833a5620943e3fc7d5e4930f0df
|
|
NUGET_REGISTRY: https://nuget.pkg.github.com/mapnik/index.json
|
|
NUGET_USERNAME: mapnik
|
|
USE_MEMORY_MAPPED_FILE: "ON"
|
|
secrets:
|
|
NUGET_REGISTRY_PAT: ${{ secrets.VCPKG_CACHE_PAT }}
|
|
|
|
ubuntu-mmf-off:
|
|
needs: checkSource
|
|
name: Linux file based
|
|
uses: ./.github/workflows/ubuntu.yml
|
|
with:
|
|
VCPKG_SHA: f6af75acc923c833a5620943e3fc7d5e4930f0df
|
|
NUGET_REGISTRY: https://nuget.pkg.github.com/mapnik/index.json
|
|
NUGET_USERNAME: mapnik
|
|
USE_MEMORY_MAPPED_FILE: "OFF"
|
|
secrets:
|
|
NUGET_REGISTRY_PAT: ${{ secrets.VCPKG_CACHE_PAT }}
|
|
|
|
macos:
|
|
needs: checkSource
|
|
name: MacOS memory mapped
|
|
uses: ./.github/workflows/macos.yml
|
|
with:
|
|
VCPKG_SHA: f6af75acc923c833a5620943e3fc7d5e4930f0df
|
|
NUGET_REGISTRY: https://nuget.pkg.github.com/mapnik/index.json
|
|
NUGET_USERNAME: mapnik
|
|
USE_MEMORY_MAPPED_FILE: "ON"
|
|
secrets:
|
|
NUGET_REGISTRY_PAT: ${{ secrets.VCPKG_CACHE_PAT }}
|
|
|
|
macos-mmf-off:
|
|
needs: checkSource
|
|
name: MacOS file based
|
|
uses: ./.github/workflows/macos.yml
|
|
with:
|
|
VCPKG_SHA: f6af75acc923c833a5620943e3fc7d5e4930f0df
|
|
NUGET_REGISTRY: https://nuget.pkg.github.com/mapnik/index.json
|
|
NUGET_USERNAME: mapnik
|
|
USE_MEMORY_MAPPED_FILE: "OFF"
|
|
secrets:
|
|
NUGET_REGISTRY_PAT: ${{ secrets.VCPKG_CACHE_PAT }}
|