fix: Updated VendorModule to detect kMsStore platform correctly and fixed the path accordingly. #217
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: Main CI | |
on: | |
pull_request: | |
branches: [main, feature/*] | |
paths: | |
- "CommonLibSF/**" | |
workflow_dispatch: | |
env: | |
VCPKG_COMMIT_ID: e44d60e6bf0964064bf69667cd9f3e91dc383c7c | |
GITHUB_WORKSPACE: ${{ github.workspace }} | |
jobs: | |
build: | |
runs-on: windows-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
compiler: | |
- msvc | |
- clang-cl | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Get CMake | |
uses: lukka/get-cmake@latest | |
- name: Setup vcpkg | |
uses: lukka/[email protected] | |
with: | |
vcpkgGitCommitId: ${{ env.VCPKG_COMMIT_ID }} | |
- name: Run CMake | |
uses: lukka/[email protected] | |
with: | |
cmakeListsTxtPath: "${{ github.workspace }}/CommonLibSF/CMakeLists.txt" | |
configurePreset: build-release-${{ matrix.compiler }}-ninja | |
configurePresetCmdString: "[`-B`, `$[env.GITHUB_WORKSPACE]/build`, `-S`, `$[env.GITHUB_WORKSPACE]/CommonLibSF`, `--preset`, `$[env.CONFIGURE_PRESET_NAME]`]" | |
buildPreset: release-${{ matrix.compiler }}-ninja | |
buildPresetCmdString: "[`--build`, `$[env.GITHUB_WORKSPACE]/build`, `--preset`, `$[env.BUILD_PRESET_NAME]`]" |