CI: compile with GCC on aarch64 with ARM Crypto Extensions

This commit is contained in:
Frank Denis
2026-01-11 17:50:04 +01:00
parent 83c310254c
commit 64cba3196c
+21
View File
@@ -208,6 +208,27 @@ jobs:
make check
make distclean > /dev/null
aarch64-gcc-crypto:
runs-on: ubuntu-24.04-arm
steps:
- uses: actions/checkout@v6
- name: Update packages list
run: sudo apt-get update
- name: Install dependencies
run: sudo apt-get install -y build-essential libtool autoconf automake
- name: Autogen
run: ./autogen.sh -s
- name: Compilation with GCC on aarch64 with NEON and ARM Crypto extensions
run: |
env CFLAGS="-march=armv8-a+crypto" CPPFLAGS="-DDEV_MODE=1" ./configure --disable-dependency-tracking
make -j $(nproc)
make check
make distclean > /dev/null
android:
runs-on: ubuntu-latest
steps: