From 5cd4974e54e3249fc3cd14a6a647811f1339a3f3 Mon Sep 17 00:00:00 2001 From: Carsten Rudolph <18394207+crud89@users.noreply.github.com> Date: Mon, 26 Aug 2024 11:50:15 +0200 Subject: [PATCH] Create distinct checks per compiler. --- .github/workflows/ci.yml | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 507ff73d..197b20bc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 @@ -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)