Skip to content

Commit d8b0068

Browse files
committed
Skipping C Unit Tests on ubuntu-24.04
Signed-off-by: ashish-jabble <ashish@dianomic.com>
1 parent dd40ce8 commit d8b0068

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/checker.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66

77
jobs:
88
test:
9-
name: Build on ${{ matrix.os }}
9+
name: 🛠️ Build on ${{ matrix.os }}
1010
runs-on: ${{ matrix.os }}
1111
strategy:
1212
fail-fast: false
@@ -29,8 +29,12 @@ jobs:
2929
sudo ./requirements.sh
3030
make -j"$(nproc)"
3131
32+
- name: 🚫 Skipping C Unit Tests on ubuntu-24.04
33+
if: matrix.os == 'ubuntu-24.04'
34+
run: echo "⚠️ Skipping C unit tests on ubuntu-24.04 due to increased execution time. See JIRA FOGL-9817 for details."
35+
3236
- name: 🧪 Run C Unit Tests
33-
if: steps.make_fledge.outcome == 'success'
37+
if: matrix.os != 'ubuntu-24.04' && steps.make_fledge.outcome == 'success'
3438
continue-on-error: true
3539
run: |
3640
set +e
@@ -74,3 +78,4 @@ jobs:
7478
path: ${{ env.FLEDGE_ROOT }}/reports/*.xml
7579
reporter: java-junit
7680
fail-on-error: true
81+

0 commit comments

Comments
 (0)