Skip to content

Commit

Permalink
Try
Browse files Browse the repository at this point in the history
  • Loading branch information
Cuda-Chen committed Nov 24, 2023
1 parent 19c81ab commit 9c686b7
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/github_actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,12 @@ jobs:
runs-on: ubuntu-20.04
strategy:
matrix:
arch_with_features: [{arch: armv7, feature: none}, {arch: aarch64, feature: none}, {arch: aarch64, feature: crypto+crc}, {arch: armv7, feature: none, arch_flags: '-mcpu=cortex-a32 -mfpu=neon-fp-armv8'}]
arch_with_features: [
{arch: armv7, feature: none},
{arch: aarch64, feature: none},
{arch: aarch64, feature: crypto+crc},
{arch: armv7, feature: none, arch_cflags: '-mcpu=cortex-a32 -mfpu=neon-fp-armv8'}
]
cxx_compiler: [g++-10, clang++-11]
steps:
- name: checkout code
Expand All @@ -69,13 +74,13 @@ jobs:
distro: ubuntu20.04
env: |
CXX: ${{ matrix.cxx_compiler }}
ARCH_CFLAGS:
ARCH_CFLAGS: ${{ matrix.arch_with_features.arch_cflags && 'ARCH_CFLAGS=${{ matrix.arch_with_features.arch_cflags }}' }}
install: |
apt-get update -q -y
apt-get install -q -y "${{ matrix.cxx_compiler }}" make
apt-get install -q -y gcc
run: |
make FEATURE=${{ matrix.arch_with_features.feature }} ${{ (matrix.arch_with_features.arch_flags != '') && 'ARCH_CFLAGS=${{ matrix.arch_with_features.arch_flags }}' || '' }} check
make FEATURE=${{ matrix.arch_with_features.feature }} check
host_win_msvc:
runs-on: windows-2022
Expand Down

0 comments on commit 9c686b7

Please sign in to comment.