Skip to content

Commit

Permalink
Expand testing in autoconf CI workflow (closes #27):
Browse files Browse the repository at this point in the history
* .github/workflows/autoconf.yml:
  Add libsecret and Apache httpd packages so mod_dav_svn and GNOME
  keyring libraries are built. Add test matrix with testing for
  (check, davautocheck) x (ubuntu-latest, ubuntu-22.04-arm).


git-svn-id: https://svn.apache.org/repos/asf/subversion/trunk@1923514 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
notroj committed Feb 3, 2025
1 parent 625a980 commit 377fa8a
Showing 1 changed file with 7 additions and 6 deletions.
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

0 comments on commit 377fa8a

Please sign in to comment.