File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed
Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change 66
77jobs :
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
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
7478 path : ${{ env.FLEDGE_ROOT }}/reports/*.xml
7579 reporter : java-junit
7680 fail-on-error : true
81+
You can’t perform that action at this time.
0 commit comments