Skip to content

Commit

Permalink
[GitHub Actions] Update job names
Browse files Browse the repository at this point in the history
  • Loading branch information
past-due committed Jun 27, 2021
1 parent 41b5850 commit e57c6c2
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/CI_alpine.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
matrix:
include:
- name: ":LATEST (CMake) [GCC]"
- name: "Alpine :LATEST [GCC]"
compiler: 'gcc'
cc: '/usr/bin/gcc'
cxx: '/usr/bin/g++'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/CI_archlinux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ jobs:
strategy:
matrix:
include:
- name: ":LATEST (CMake) [GCC]"
- name: "Arch :LATEST [GCC]"
compiler: 'gcc'
cc: '/usr/bin/gcc'
cxx: '/usr/bin/g++'
- name: ":LATEST (CMake) [Clang]"
- name: "Arch :LATEST [Clang]"
compiler: 'clang'
cc: '/usr/bin/clang'
cxx: '/usr/bin/clang++'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/CI_fedora.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:

jobs:
fedora-latest-gcc:
name: :LATEST (CMake) [GCC]
name: Fedora :LATEST [GCC]
runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message, '[ci skip]')"
steps:
Expand Down Expand Up @@ -47,7 +47,7 @@ jobs:
echo "::remove-matcher owner=gcc::"
fedora-latest-gcc-m32:
name: :LATEST (CMake) [GCC -m32]
name: Fedora :LATEST [GCC -m32]
runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message, '[ci skip]')"
steps:
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/CI_ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,37 +16,37 @@ jobs:
matrix:
include:
# Builds with GCC (uploaded as artifacts, and published as release DEBs)
- name: "Ubuntu 18.04 (CMake) [GCC]"
- name: "Ubuntu 18.04 [GCC]"
docker: "ubuntu-18.04"
arch: "amd64"
output-suffix: "ubuntu18.04"
compiler: gcc
publish_artifact: true
deploy_release: true
- name: "Ubuntu 20.04 (CMake) [GCC]"
- name: "Ubuntu 20.04 [GCC]"
docker: "ubuntu-20.04"
arch: "amd64"
compiler: gcc
output-suffix: "ubuntu20.04"
publish_artifact: true
deploy_release: true
# Older builds with GCC (not uploaded)
- name: "Ubuntu 16.04 (CMake) [GCC]"
- name: "Ubuntu 16.04 [GCC]"
docker: "ubuntu-16.04"
arch: "amd64"
output-suffix: "ubuntu16.04"
compiler: gcc
publish_artifact: false
deploy_release: false
# Builds with Clang (not uploaded)
- name: "Ubuntu 18.04 (CMake) [Clang]"
- name: "Ubuntu 18.04 [Clang]"
docker: "ubuntu-18.04"
arch: "amd64"
output-suffix: "ubuntu18.04"
compiler: clang
publish_artifact: false
deploy_release: false
- name: "Ubuntu 20.04 (CMake) [Clang]"
- name: "Ubuntu 20.04 [Clang]"
docker: "ubuntu-20.04"
arch: "amd64"
compiler: clang
Expand Down Expand Up @@ -161,7 +161,7 @@ jobs:
WZ_GITHUB_REF: ${{ github.ref }}

package-source:
name: Package Source (Ubuntu 18.04, CMake) [GCC]
name: Package Source (Ubuntu 18.04) [GCC]
runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message, '[ci skip]')"
steps:
Expand Down

0 comments on commit e57c6c2

Please sign in to comment.