From 1083945a00af7fc8ada0f4d4386d4f1b1d42d8fe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=B0lteri=C5=9F=20Ero=C4=9Flu?= Date: Tue, 5 Jan 2021 14:44:05 +0300 Subject: [PATCH 1/2] Make jobnames more understandable --- .github/workflows/macos.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index cef27e89e..c476fbefe 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -3,7 +3,7 @@ name: MacOS Build and Test on: [push, pull_request] jobs: - build-make: + macos-make: runs-on: macos-latest steps: @@ -36,9 +36,9 @@ jobs: - name: Test run: make check - build-make-btaddon: + macos-make-btaddon: if: always() - needs: [build-make] + needs: [macos-make] runs-on: macos-latest steps: @@ -72,9 +72,9 @@ jobs: - name: Test run: make check - build-cmake: + macos-cmake: if: always() - needs: [build-make, build-make-btaddon] + needs: [macos-make, macos-make-btaddon] runs-on: macos-latest steps: From e41e5de8b262c7e6c8c5a2cbbf653dcc6c45535a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=B0lteri=C5=9F=20Ero=C4=9Flu?= Date: Tue, 5 Jan 2021 14:44:49 +0300 Subject: [PATCH 2/2] Make jobnames more understandable 2/2 --- .github/workflows/ubuntu.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ubuntu.yml b/.github/workflows/ubuntu.yml index 394088e87..57a6caa1d 100644 --- a/.github/workflows/ubuntu.yml +++ b/.github/workflows/ubuntu.yml @@ -3,7 +3,7 @@ name: Ubuntu Build and Test on: [push, pull_request] jobs: - build-make: + ubuntu-make: runs-on: ubuntu-latest steps: @@ -26,9 +26,9 @@ jobs: - name: Test run: make check - build-make-btaddon: + ubuntu-make-btaddon: if: always() - needs: [build-make] + needs: [ubuntu-make] runs-on: ubuntu-latest steps: @@ -52,9 +52,9 @@ jobs: - name: Test run: make check - build-cmake: + ubuntu-cmake: if: always() - needs: [build-make, build-make-btaddon] + needs: [ubuntu-make, ubuntu-make-btaddon] runs-on: ubuntu-latest steps: