Rename workflow jobs for github branch rules.
authorMyungJoo Ham <myungjoo.ham@samsung.com>
Mon, 27 May 2024 08:15:53 +0000 (17:15 +0900)
committerjaeyun-jung <39614140+jaeyun-jung@users.noreply.github.com>
Wed, 29 May 2024 08:07:27 +0000 (17:07 +0900)
Github status checks are based on job names.
Add names to configure Github status checks.

Signed-off-by: MyungJoo Ham <myungjoo.ham@samsung.com>
.github/workflows/android.yml
.github/workflows/cpp-linter.yml
.github/workflows/gbs_build.yml
.github/workflows/macos.yaml
.github/workflows/pdebuild.yml
.github/workflows/ubuntu_clean_llvm_build.yml
.github/workflows/ubuntu_clean_meson_build.yml
.github/workflows/yocto.yml

index b62d949..6caf017 100644 (file)
@@ -7,6 +7,7 @@ on:
 jobs:
   build:
     runs-on: ubuntu-22.04
+    name: Android NDK build on Ubuntu for arm64-v8a
     steps:
     - uses: actions/checkout@v4
       with:
index 4196483..74fd3d9 100644 (file)
@@ -4,6 +4,7 @@ on: pull_request
 
 jobs:
   cpp-linter:
+    name: CPP-Linter
     runs-on: ubuntu-latest
     steps:
       - uses: actions/checkout@v4
index d196bc0..ec0c6df 100644 (file)
@@ -9,7 +9,7 @@ on:
 
 jobs:
   build:
-
+    name: Tizen GBS build on Ubuntu
     strategy:
       matrix:
         include:
index c44071c..3991743 100644 (file)
@@ -6,6 +6,7 @@ on:
 
 jobs:
   build:
+    name: Build on MacOS-latest with Meson
     runs-on: macos-latest
 
     steps:
index a9ddd3a..b64bf70 100644 (file)
@@ -11,7 +11,7 @@ on:
 
 jobs:
   build:
-
+    name: Ubuntu pdebuild on Ubuntu
     runs-on: ${{ matrix.os }}
     strategy:
       matrix:
index 07af9e1..cf2d139 100644 (file)
@@ -6,7 +6,7 @@ on:
 
 jobs:
   build:
-
+    name: Build on Ubuntu with LLVM/Clang
     runs-on: ${{ matrix.os }}
     strategy:
       matrix:
index ca36b9f..3127d70 100644 (file)
@@ -6,7 +6,7 @@ on:
 
 jobs:
   build:
-
+    name: Build with meson and test with Valgrind in Ubuntu
     runs-on: ${{ matrix.os }}
     strategy:
       matrix:
index 70e712e..27d37ee 100644 (file)
@@ -6,7 +6,7 @@ on:
 
 jobs:
   build:
-
+    name: Build with Yocto devtool on Ubuntu
     runs-on: ubuntu-20.04
     steps:
     - uses: actions/checkout@v4