From 2e27cf13247d57653ad3eb9823f27cb49fc6b045 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=A9mie=20Astor?= Date: Tue, 5 May 2020 23:00:09 +0200 Subject: [PATCH] :wrench: Add Os info to build name --- .github/workflows/linux.yml | 2 +- .github/workflows/macos.yml | 2 +- .github/workflows/windows.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 37510947..a35f282a 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -8,7 +8,7 @@ on: jobs: build: - name: ${{ matrix.cc }} ${{ matrix.double && 'double' || 'float'}} + name: ${{ matrix.os }} ${{ matrix.cc }} ${{ matrix.double && 'double' || 'float'}} runs-on: ubuntu-latest if: "!contains(github.event.head_commit.message, '[skip ci]')" strategy: diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index abcd3b8c..b0497877 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -8,7 +8,7 @@ on: jobs: build: - name: ${{ matrix.cc }} ${{ matrix.double && 'double' || 'float'}} + name: ${{ matrix.os }} ${{ matrix.cc }} ${{ matrix.double && 'double' || 'float'}} runs-on: macos-latest if: "!contains(github.event.head_commit.message, '[skip ci]')" strategy: diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 9a790008..f2af5349 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -8,7 +8,7 @@ on: jobs: build: - name: ${{ matrix.cc }} ${{ matrix.double && 'double' || 'float'}} + name: ${{ matrix.os }} ${{ matrix.cc }} ${{ matrix.double && 'double' || 'float'}} runs-on: windows-latest if: "!contains(github.event.head_commit.message, '[skip ci]')" strategy: -- 2.43.0