Skip to content

Commit

Permalink
Create distinct checks per compiler.
Browse files Browse the repository at this point in the history
  • Loading branch information
crud89 authored Aug 26, 2024
1 parent 5645428 commit 5cd4974
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,16 +55,18 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ windows-latest ]
name: [ windows-latest-msvc, windows-latest-clang ]
include:
- os: windows-latest
triplet: x64-windows
- name: windows-latest-msvc
os: windows-latest
compiler: msvc
triplet: x64-windows
configuration: windows-msvc-x64-test
architecture: x64
- os: windows-latest
triplet: x64-windows
- name: windows-latest-clang
os: windows-latest
compiler: clang
triplet: x64-windows
configuration: windows-clang-x64-test
architecture: x64

Expand Down Expand Up @@ -97,7 +99,7 @@ jobs:
const pull_request = await github.pulls.get({
owner: context.repo.owner,
repo: context.repo.repo,
pull_number: ${{ github.event.issue.number }}
pull_number: ${{ github.event.inputs.pullRequest }}
})
console.log('HEAD SHA = ' + pull_request.data.head.sha + ', REF = ' + pull_request.data.head.ref)
core.exportVariable('HEAD_SHA', pull_request.data.head.sha)
Expand Down

0 comments on commit 5cd4974

Please sign in to comment.