Skip to content

Commit e2f8cdd

Browse files
committed
GitHub Actions: relax the test condition about ARM executbale format
We expected "ELF 32-bit LSB pie executable, ARM, EABI5" as the output of `file ctags'. However, after switching the package management tool on ubuntu from brew to apt, `file ctags' reports "ELF 32-bit LSB shared object, ARM, EABI5". Signed-off-by: Masatake YAMATO <[email protected]>
1 parent dd0ad30 commit e2f8cdd

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/cross-compile-android-ndk-on-ubuntu.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,4 +77,5 @@ jobs:
7777
7878
- run: make V=1
7979

80-
- run: file ctags | grep "ELF 32-bit LSB pie executable, ARM, EABI5"
80+
# pie executable or shared object
81+
- run: file ctags | grep 'ELF 32-bit LSB .*, ARM, EABI5'

0 commit comments

Comments
 (0)