From: Jérémie Astor Date: Tue, 5 May 2020 21:01:33 +0000 (+0200) Subject: :wrench: Add Os info to build name (hard code) X-Git-Tag: nightly~1674 X-Git-Url: http://10.10.0.4:5575/?a=commitdiff_plain;h=5ad0ebe9112d66bd08c1cc669084f13eec416a02;p=gwion.git :wrench: Add Os info to build name (hard code) --- diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index a35f282a..dda5db15 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -8,7 +8,7 @@ on: jobs: build: - name: ${{ matrix.os }} ${{ matrix.cc }} ${{ matrix.double && 'double' || 'float'}} + 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 b0497877..ecc36716 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -8,7 +8,7 @@ on: jobs: build: - name: ${{ matrix.os }} ${{ matrix.cc }} ${{ matrix.double && 'double' || 'float'}} + name: Mac ${{ 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 f2af5349..33821949 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -8,7 +8,7 @@ on: jobs: build: - name: ${{ matrix.os }} ${{ matrix.cc }} ${{ matrix.double && 'double' || 'float'}} + name: Windows ${{ matrix.cc }} ${{ matrix.double && 'double' || 'float'}} runs-on: windows-latest if: "!contains(github.event.head_commit.message, '[skip ci]')" strategy: