Skip to content

Commit

Permalink
Merge branch 'main' into zLukas-patch-1
Browse files Browse the repository at this point in the history
  • Loading branch information
agatameller authored Feb 7, 2025
2 parents ea378b3 + f6dce01 commit 99f52bf
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/ubuntu_build_with_gtest.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: gtest
name: gtest-bare-metal

on:
# allow manually trigger
Expand Down Expand Up @@ -31,8 +31,8 @@ permissions:
contents: read

jobs:
changes:
runs-on: ubuntu-latest
gtest-check-for-changes:
runs-on: ubuntu-22.04
permissions:
pull-requests: read
outputs:
Expand All @@ -45,9 +45,9 @@ jobs:
with:
filters: .github/path_filters.yml

Build:
needs: changes
if: ${{ github.repository == 'OpenVisualCloud/Media-Transport-Library' && needs.changes.outputs.changed == 'true' }}
gtest-build-mtl:
needs: gtest-check-for-changes
if: ${{ github.repository == 'OpenVisualCloud/Media-Transport-Library' && needs.gtest-check-for-changes.outputs.changed == 'true' }}
runs-on: [Linux, self-hosted, DPDK]
timeout-minutes: 60

Expand Down Expand Up @@ -89,9 +89,9 @@ jobs:
./build.sh
sudo ldconfig
Test:
needs: [changes, Build]
if: ${{ github.repository == 'OpenVisualCloud/Media-Transport-Library' && needs.changes.outputs.changed == 'true' }}
gtest-perform-tests:
needs: [gtest-check-for-changes, gtest-build-mtl]
if: ${{ github.repository == 'OpenVisualCloud/Media-Transport-Library' && needs.gtest-check-for-changes.outputs.changed == 'true' }}
runs-on: [Linux, self-hosted, DPDK]
steps:
- name: Harden Runner
Expand Down

0 comments on commit 99f52bf

Please sign in to comment.