From f73dc5c9f587557ea12df8f1fdf64efa96c19bfb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=A9mie=20Dumas?= Date: Mon, 15 Feb 2021 12:47:33 -0800 Subject: [PATCH] Update job name in github actions. (#1721) --- .github/workflows/continuous.yml | 3 ++- .github/workflows/nightly.yml | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/continuous.yml b/.github/workflows/continuous.yml index a5aa0d958..4d7428e2d 100644 --- a/.github/workflows/continuous.yml +++ b/.github/workflows/continuous.yml @@ -20,7 +20,7 @@ jobs: #################### Unix: - name: ${{ matrix.name }} (${{ matrix.config }}, ${{ matrix.static }}) + name: ${{ matrix.name }} (${{ matrix.config }}, ${{ fromJSON('["Static", "HeaderOnly"]')[matrix.static == 'ON'] }}) runs-on: ${{ matrix.os }} strategy: fail-fast: false @@ -94,6 +94,7 @@ jobs: #################### Windows: + name: Windows (${{ matrix.config }}, ${{ fromJSON('["Static", "HeaderOnly"]')[matrix.static == 'ON'] }}) runs-on: windows-2019 env: CC: cl.exe diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index dc886fd3b..c816f4dba 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -17,7 +17,7 @@ jobs: # https://github.com/onqtam/doctest/blob/dev/.github/workflows/main.yml Unix: - name: ${{ matrix.name }} (${{ matrix.config }}, Static=${{ matrix.static }}) + name: ${{ matrix.name }} (${{ matrix.config }}, ${{ fromJSON('["Static", "HeaderOnly"]')[matrix.static == 'ON'] }}) runs-on: ${{ matrix.os }} strategy: fail-fast: false @@ -140,7 +140,7 @@ jobs: #################### Windows: - name: Windows (${{ matrix.config }}, Static=${{ matrix.static }}) + name: Windows (${{ matrix.config }}, ${{ fromJSON('["Static", "HeaderOnly"]')[matrix.static == 'ON'] }}) runs-on: windows-2019 env: CC: cl.exe