Skip to content

Commit

Permalink
Merge pull request #726 from argilo/fix-armv7-ci
Browse files Browse the repository at this point in the history
Build and test neonv7 protokernels on armv7
  • Loading branch information
jdemel authored Jan 7, 2024
2 parents f2fb33c + 899a820 commit 863aff5
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,8 @@ jobs:
compiler: { name: clang-14, cc: clang-14, cxx: clang++-14 }
- arch: armv7
distro: ubuntu22.04
compiler: { name: g++-12, cc: gcc-12, cxx: g++-12 }
compiler: { name: g++, cc: gcc, cxx: g++ }
cmakeargs: "-DCMAKE_TOOLCHAIN_FILE=../cmake/Toolchains/arm_cortex_a72_hardfp_native.cmake"
- arch: ppc64le
distro: ubuntu22.04
compiler: { name: g++-12, cc: gcc-12, cxx: g++-12 }
Expand Down Expand Up @@ -149,7 +150,7 @@ jobs:
run: |
cd /volk
cd build
cmake -DCMAKE_CXX_FLAGS="-Werror" -DBUILD_EXECUTABLE=ON ..
cmake -DCMAKE_CXX_FLAGS="-Werror" -DBUILD_EXECUTABLE=ON ${{ matrix.cmakeargs }} ..
echo "Build with $(nproc) thread(s)"
make -j$(nproc)
if [ -f ./cpu_features/list_cpu_features ]; then
Expand Down

0 comments on commit 863aff5

Please sign in to comment.