Skip to content

Commit 65d21a4

Browse files
committed
ci: fix workflow
1 parent 2734d9e commit 65d21a4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ jobs:
1111
strategy:
1212
matrix:
1313
os:
14-
- ubuntu-20.04
1514
- ubuntu-22.04
15+
- ubuntu-24.04
1616
runs-on: ${{ matrix.os }}
1717

1818
steps:
@@ -51,4 +51,4 @@ jobs:
5151
run: |
5252
source /opt/intel/sgxsdk/environment
5353
for d in $GITHUB_WORKSPACE/app/selftest/*/ ; do echo -e "\n**** $d ****\n" ; cd "$d" ; make ; ldd ./app ; done
54-
for d in $GITHUB_WORKSPACE/app/*/ ; do echo -e "\n**** $d ****\n" ; cd "$d" ; make ; ldd ./app ; done
54+
for d in $GITHUB_WORKSPACE/app/*/ ; do echo -e "\n**** $d ****\n" ; cd "$d" ; if [[ -f Makefile ]]; then make; ldd ./app ; fi ; done

0 commit comments

Comments
 (0)