Merge pull request #992 from darren/fix-PcmMsrDriver-build #1443
This file contains hidden or 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: CPack check | |
| on: | |
| push: | |
| branches: [ '**' ] | |
| pull_request: | |
| branches: [ '**' ] | |
| permissions: | |
| contents: read | |
| jobs: | |
| job-build1: | |
| runs-on: ci-gcc9 | |
| if: ${{ github.repository != 'intel/pcm' }} | |
| steps: | |
| - name: Harden Runner | |
| uses: step-security/harden-runner@0080882f6c36860b6ba35c610c98ce87d4e2f26f # v2.10.2 | |
| with: | |
| egress-policy: audit | |
| - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| with: | |
| submodules: recursive | |
| - name: Configure CMake | |
| run: | | |
| cmake --version | |
| rm -rf ${{ github.workspace }}/build | |
| cmake -B ${{ github.workspace }}/build -DCMAKE_INSTALL_PREFIX=${{ github.workspace }}/build | |
| - name: Build and Install | |
| run: | | |
| g++ --version | |
| cd ${{ github.workspace }}/build | |
| make -j$(nproc) | |
| - name: CPack | |
| run: | | |
| cd ${{ github.workspace }}/build | |
| cpack | |
| job-build2: | |
| runs-on: ci-test | |
| if: ${{ github.repository != 'intel/pcm' }} | |
| steps: | |
| - name: Harden Runner | |
| uses: step-security/harden-runner@0080882f6c36860b6ba35c610c98ce87d4e2f26f # v2.10.2 | |
| with: | |
| egress-policy: audit | |
| - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| with: | |
| submodules: recursive | |
| - name: Configure CMake | |
| run: | | |
| cmake --version | |
| rm -rf ${{ github.workspace }}/build | |
| cmake -B ${{ github.workspace }}/build -DCMAKE_INSTALL_PREFIX=${{ github.workspace }}/build | |
| - name: Build and Install | |
| run: | | |
| g++ --version | |
| cd ${{ github.workspace }}/build | |
| make -j$(nproc) | |
| - name: CPack | |
| run: | | |
| cd ${{ github.workspace }}/build | |
| cpack |