From: Jérémie Astor Date: Tue, 5 May 2020 21:00:09 +0000 (+0200) Subject: :wrench: Add Os info to build name X-Git-Tag: nightly~1675 X-Git-Url: http://10.10.0.4:5575/?a=commitdiff_plain;h=2e27cf13247d57653ad3eb9823f27cb49fc6b045;p=gwion.git :wrench: Add Os info to build name --- 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: