Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Expand autoconf test matrix #27

Closed
wants to merge 1 commit into from
Closed
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
13 changes: 7 additions & 6 deletions .github/workflows/autoconf.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,11 @@ jobs:
strategy:
fail-fast: false
matrix:
include:
- name: Default
os: ubuntu-latest
check-target: [check, davautocheck]
os: [ubuntu-latest, ubuntu-22.04-arm]

runs-on: ${{ matrix.os }}
name: ${{ matrix.name }}
name: ${{ matrix.os }}, target ${{ matrix.check-target }}

steps:
- name: Install dependencies (Linux, apt-get)
Expand All @@ -59,6 +58,8 @@ jobs:
libsqlite3-dev
liblz4-dev
libutf8proc-dev
apache2-dev
libsecret-1-dev

- name: Use LF for Git checkout
run: |
Expand All @@ -76,8 +77,8 @@ jobs:
- name: Build (make)
run: make -j

- name: Run tests (make check)
run: make check PARALLEL=16
- name: Run tests
run: make ${{matrix.check-target}} PARALLEL=16 APACHE_MPM=event

- name: Install (make install)
run: sudo make install