From: Jérémie Astor Date: Tue, 5 May 2020 21:09:29 +0000 (+0200) Subject: :wrench: Build name formatting X-Git-Tag: nightly~1672 X-Git-Url: http://10.10.0.4:5575/?a=commitdiff_plain;h=5a8412f5ab5f6a660d03524b1bdb3f0e63514f07;p=gwion.git :wrench: Build name formatting --- diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index dda5db15..4ebf9ff7 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -8,7 +8,7 @@ on: jobs: build: - name: Linux ${{ matrix.cc }} ${{ matrix.double && 'double' || 'float'}} + name: [ Linux ] ${{ matrix.double && 'double' || 'float '}} (${{ matrix.cc }}) 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 ecc36716..25347fb9 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -8,7 +8,7 @@ on: jobs: build: - name: Mac ${{ matrix.cc }} ${{ matrix.double && 'double' || 'float'}} + name: [ Mac ] ${{ matrix.double && 'double' || 'float '}} (${{ matrix.cc }}) 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 33821949..de038f63 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -8,7 +8,7 @@ on: jobs: build: - name: Windows ${{ matrix.cc }} ${{ matrix.double && 'double' || 'float'}} + name: Windows ${{ matrix.double && 'double' || 'float'}} runs-on: windows-latest if: "!contains(github.event.head_commit.message, '[skip ci]')" strategy: