Bump fedora from 40 to 41 #1136
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: MSVC Windows build | |
on: | |
push: | |
branches: [ '**' ] | |
pull_request: | |
branches: [ '**' ] | |
env: | |
BUILD_TYPE: Release | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: ci-windows | |
if: ${{ github.repository != 'intel/pcm' }} | |
steps: | |
- name: Harden Runner | |
uses: step-security/harden-runner@17d0e2bd7d51742c71671bd19fa12bdc9d40a3d6 # v2.8.1 | |
with: | |
egress-policy: audit | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
with: | |
submodules: recursive | |
- name: Configure CMake | |
run: | | |
if (Test-Path ${{github.workspace}}\build){ Remove-Item ${{github.workspace}}\build -Recurse } | |
cmake -B ${{github.workspace}}\build | |
- name: Build | |
run: | | |
cmake --build ${{github.workspace}}\build --config ${{env.BUILD_TYPE}} --parallel | |
- name: Add MSBuild to PATH | |
uses: microsoft/setup-msbuild@6fb02220983dee41ce7ae257b6f4d8f9bf5ed4ce # v2.0.0 | |
- name: Build MSR driver | |
run: | | |
chdir ${{github.workspace}}\src\WinMSRDriver | |
msbuild MSR.vcxproj /p:Configuration=Release,Platform=x64 /t:Clean,Build /m | |
- name: upload-artifact | |
uses: actions/upload-artifact@0b2256b8c012f0828dc542b3febcab082c67f72b # v4.3.4 | |
with: | |
name: PCMforWindows | |
path: build/bin/**/* |