Skip to content
Merged
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
21 changes: 14 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,12 @@ jobs:

cmake-fedora-latest:
name: cmake-fedora-latest
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
compiler: [ gcc, clang ]
fail-fast: false
matrix:
compiler: [ gcc, clang ]
os: [ ubuntu-latest, ubuntu-24.04-arm ]
steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -42,7 +43,10 @@ jobs:
podman build .
make-fedora-latest:
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest, ubuntu-24.04-arm ]
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down Expand Up @@ -188,7 +192,10 @@ jobs:
retention-days: 0

cmake-windows-latest:
runs-on: windows-latest
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ windows-latest, windows-11-arm ]
env:
APACHE_LOUNGE_DISTRO_VERSION: 2.4.63-250122
HTTPD_DEV_HOME: 'C:\Apache24'
Expand Down Expand Up @@ -220,7 +227,7 @@ jobs:
uses: actions/upload-artifact@v4
if: always()
with:
name: Windows logs
name: Windows logs for ${{ matrix.os }}
path: C:\Apache24\logs\
retention-days: 7

Expand Down