Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 15 additions & 3 deletions .github/workflows/build_crosscompilation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:
workflow_dispatch:

jobs:
crosscompilation:
crosscompilation-aarch64:
name: AArch64 on ubuntu-latest x86_64
runs-on: ubuntu-latest
env:
Expand All @@ -23,5 +23,17 @@ jobs:
fetch-depth: 0
- name: Run script
run: |
./utils/cross-compile-test.sh --full
#No real tests, only `ndpiReader -H`
./utils/cross-compile-test.sh --full #No real tests

crosscompilation-s390x:
name: s390x on ubuntu-latest x86_64
runs-on: ubuntu-latest
env:
CFLAGS: -Werror -DNDPI_EXTENDED_SANITY_CHECKS
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Run script
run: |
./utils/cross-compile-test-s390x.sh --full #No real tests
2 changes: 2 additions & 0 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,8 @@ AS_IF([test "x${enable_code_coverage}" = "xyes"],[

AS_IF([test "${enable_npcap+set}" = set],[DISABLE_NPCAP=1],[DISABLE_NPCAP=0])

AC_PATH_PROG([FILECMD], [file])
AC_PATH_PROG([MANIFEST_TOOL], [mt], [:])
LT_INIT
LT_LIB_M

Expand Down
Loading
Loading