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