export functions to build shard library and use vcpkg to manage dependennces #150
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
# https://docs.github.com/en/actions/learn-github-actions/contexts | |
--- | |
name: mdflib | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
page_build: | |
workflow_dispatch: | |
env: | |
IS_RELEASE: ${{ github.event_name == 'push' && github.ref_type == 'tag' && startswith(github.ref_name, 'v') }} | |
jobs: | |
windows: | |
name: run on ${{matrix.os}}(${{matrix.arch}}) | |
runs-on: ${{matrix.os}} | |
strategy: | |
matrix: | |
os: [windows-latest] | |
arch: [x64, x64_x86] | |
env: | |
vcpkgCommitId: 0895a813036f4d189e2bdd1b62741744614347b4 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
# Install latest CMake. | |
- uses: lukka/get-cmake@latest | |
# Setup vcpkg: ensures vcpkg is downloaded and built. | |
# Since vcpkg.json is being used later on to install the packages | |
# when `run-cmake` runs, no packages are installed at this time | |
# (and vcpkg does not run). | |
- name: Setup vcpkg | |
uses: lukka/run-vcpkg@v11 | |
with: | |
# This is the default location of the directory containing vcpkg sources. | |
# Change it to the right location if needed. | |
vcpkgDirectory: '${{ github.workspace }}/vcpkg' | |
# If not using a submodule for vcpkg sources, this specifies which commit | |
# id must be checkout from a Git repo. | |
# Note: it must not be set if using a Git submodule for vcpkg. | |
vcpkgGitCommitId: '${{ env.vcpkgCommitId }}' | |
# This is the glob expression used to locate the vcpkg.json. | |
# Change it to match a single manifest file you want to use. | |
# Note: do not use `${{ github.context }}` to compose the value as it | |
# contains backslashes that would be misinterpreted. Instead | |
# compose a value relative to the root of the repository using | |
# `**/path/from/root/of/repo/to/vcpkg.json` to match the desired `vcpkg.json`. | |
vcpkgJsonGlob: '**/vcpkg.json' | |
# This is only needed if the command `vcpkg install` must run at this step. | |
# Instead it is highly suggested to let `run-cmake` to run vcpkg later on | |
# using the vcpkg.cmake toolchain. The default is `false`. | |
# runVcpkgInstall: true | |
- name: Build | |
uses: lukka/run-cmake@v10 | |
with: | |
# This is the default path to the CMakeLists.txt along side the | |
# CMakePresets.json. Change if you need have CMakeLists.txt and CMakePresets.json | |
# located elsewhere. | |
cmakeListsTxtPath: '${{ github.workspace }}/CMakeLists.txt' | |
# This is the name of the CMakePresets.json's configuration to use to generate | |
# the project files. This configuration leverages the vcpkg.cmake toolchain file to | |
# run vcpkg and install all dependencies specified in vcpkg.json. | |
configurePreset: 'msvc-multi-vcpkg-${{ matrix.arch }}' | |
# This is the name of the CMakePresets.json's configuration to build the project. | |
buildPreset: 'msvc-multi-vcpkg-${{ matrix.arch }}-release' | |
- name: Upload build | |
uses: actions/upload-artifact@v3 | |
with: | |
name: mdflibs-${{runner.os}}-${{runner.arch}} | |
path: install/msvc-multi-vcpkg/ | |
mac-and-ubuntu: | |
name: run on ${{matrix.os}}(${{matrix.arch}}) | |
runs-on: ${{matrix.os}} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, | |
# macos-latest | |
# not supported macos currently | |
] | |
arch: [x64] | |
env: | |
vcpkgCommitId: 0895a813036f4d189e2bdd1b62741744614347b4 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
# Install latest CMake. | |
- uses: lukka/get-cmake@latest | |
# Setup vcpkg: ensures vcpkg is downloaded and built. | |
# Since vcpkg.json is being used later on to install the packages | |
# when `run-cmake` runs, no packages are installed at this time | |
# (and vcpkg does not run). | |
- name: Setup vcpkg | |
uses: lukka/run-vcpkg@v11 | |
with: | |
# This is the default location of the directory containing vcpkg sources. | |
# Change it to the right location if needed. | |
vcpkgDirectory: '${{ github.workspace }}/vcpkg' | |
# If not using a submodule for vcpkg sources, this specifies which commit | |
# id must be checkout from a Git repo. | |
# Note: it must not be set if using a Git submodule for vcpkg. | |
vcpkgGitCommitId: '${{ env.vcpkgCommitId }}' | |
# This is the glob expression used to locate the vcpkg.json. | |
# Change it to match a single manifest file you want to use. | |
# Note: do not use `${{ github.context }}` to compose the value as it | |
# contains backslashes that would be misinterpreted. Instead | |
# compose a value relative to the root of the repository using | |
# `**/path/from/root/of/repo/to/vcpkg.json` to match the desired `vcpkg.json`. | |
vcpkgJsonGlob: '**/vcpkg.json' | |
# This is only needed if the command `vcpkg install` must run at this step. | |
# Instead it is highly suggested to let `run-cmake` to run vcpkg later on | |
# using the vcpkg.cmake toolchain. The default is `false`. | |
# runVcpkgInstall: true | |
- name: Build | |
uses: lukka/run-cmake@v10 | |
with: | |
# This is the default path to the CMakeLists.txt along side the | |
# CMakePresets.json. Change if you need have CMakeLists.txt and CMakePresets.json | |
# located elsewhere. | |
cmakeListsTxtPath: '${{ github.workspace }}/CMakeLists.txt' | |
# This is the name of the CMakePresets.json's configuration to use to generate | |
# the project files. This configuration leverages the vcpkg.cmake toolchain file to | |
# run vcpkg and install all dependencies specified in vcpkg.json. | |
configurePreset: 'ninja-multi-vcpkg' | |
# This is the name of the CMakePresets.json's configuration to build the project. | |
buildPreset: 'ninja-multi-vcpkg-release' | |
- name: Upload build | |
uses: actions/upload-artifact@v3 | |
with: | |
name: mdflibs-${{runner.os}}-${{runner.arch}} | |
path: install/ninja-multi-vcpkg/ | |
... |