From: Jérémie Astor Date: Sat, 12 Sep 2020 17:31:50 +0000 (+0200) Subject: :wrench: Give builds names X-Git-Tag: nightly~1337 X-Git-Url: http://10.10.0.4:5575/?a=commitdiff_plain;h=953ca200d04b318fdb6b3612bbc06d97cd4c87de;p=gwion.git :wrench: Give builds names --- diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index a59cd84e..25c37960 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.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 ddcac55e..1be69714 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: MacOS ${{ 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 e8c80884..fe451bda 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: