Skip to content

Commit

Permalink
Make sure the MacOS job names are unique
Browse files Browse the repository at this point in the history
Otherwise they clash with Linux ones and are marked as required checks, even though the workflow name is different
  • Loading branch information
VeithMetro authored Nov 18, 2024
1 parent 225b42a commit 888089e
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/Build Thunder on MacOS.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,21 +16,21 @@ on:
- 'ReleaseNotes/**'

jobs:
Thunder:
Thunder_MacOS:
uses: rdkcentral/Thunder/.github/workflows/MacOS build template.yml@master

ThunderInterfaces:
needs: Thunder
ThunderInterfaces_MacOS:
needs: Thunder_MacOS
uses: rdkcentral/ThunderInterfaces/.github/workflows/MacOS build template.yml@master

ThunderClientLibraries:
needs: ThunderInterfaces
ThunderClientLibraries_MacOS:
needs: ThunderInterfaces_MacOS
uses: rdkcentral/ThunderClientLibraries/.github/workflows/MacOS build template.yml@master

ThunderNanoServices:
needs: ThunderInterfaces
ThunderNanoServices_MacOS:
needs: ThunderInterfaces_MacOS
uses: rdkcentral/ThunderNanoServices/.github/workflows/MacOS build template.yml@master

ThunderNanoServicesRDK:
needs: ThunderInterfaces
ThunderNanoServicesRDK_MacOS:
needs: ThunderInterfaces_MacOS
uses: WebPlatformForEmbedded/ThunderNanoServicesRDK/.github/workflows/MacOS build template.yml@master

0 comments on commit 888089e

Please sign in to comment.