From 2a8e623419c7eb8b38e155594bcb5bb0ce3770f3 Mon Sep 17 00:00:00 2001 From: Kitzunu <24550914+Kitzunu@users.noreply.github.com> Date: Sun, 26 Nov 2023 14:48:40 +0100 Subject: [PATCH] fix --- .github/workflows/core-build-nopch.yml | 9 +++++---- .github/workflows/core-build-pch.yml | 5 +++-- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/.github/workflows/core-build-nopch.yml b/.github/workflows/core-build-nopch.yml index dfb4fcdf1392bb..450d78494ee838 100644 --- a/.github/workflows/core-build-nopch.yml +++ b/.github/workflows/core-build-nopch.yml @@ -16,10 +16,11 @@ jobs: fail-fast: false matrix: # the result of the matrix will be the combination of all attributes, so we get os*compiler builds - - os: ubuntu-20.04 - compiler: clang12 - - os: ubuntu-20.04 - compiler: gcc10 + include: + - os: ubuntu-20.04 + compiler: clang12 + - os: ubuntu-20.04 + compiler: gcc10 runs-on: ${{ matrix.os }} name: ${{ matrix.os }}-${{ matrix.compiler }} env: diff --git a/.github/workflows/core-build-pch.yml b/.github/workflows/core-build-pch.yml index 616b7c49034bb3..4f5c957326b5d5 100644 --- a/.github/workflows/core-build-pch.yml +++ b/.github/workflows/core-build-pch.yml @@ -16,8 +16,9 @@ jobs: fail-fast: false matrix: # the result of the matrix will be the combination of all attributes, so we get os*compiler builds - - os: ubuntu-20.04 - compiler: clang12 + include: + - os: ubuntu-20.04 + compiler: clang12 runs-on: ${{ matrix.os }} name: ${{ matrix.os }}-${{ matrix.compiler }} env: