Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -196,10 +196,11 @@ jobs:
cmake-windows-latest:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ windows-latest, windows-11-arm ]
env:
APACHE_LOUNGE_DISTRO_VERSION: 2.4.65-250724
APACHE_LOUNGE_DISTRO_VERSION: 2.4.66-251206
HTTPD_DEV_HOME: 'C:\Apache24'
steps:
- name: Checkout
Expand All @@ -220,6 +221,7 @@ jobs:
echo "LogLevel debug" >> ${{ env.HTTPD_DEV_HOME }}\conf\mod_proxy_cluster.conf
echo "Include conf/mod_proxy_cluster.conf" >> ${{ env.HTTPD_DEV_HOME }}\conf\httpd.conf
(Get-Content ${{ env.HTTPD_DEV_HOME }}\conf\httpd.conf) | %{$_ -replace "Listen 80","#Listen 80"} | Set-Content -Path ${{ env.HTTPD_DEV_HOME }}\conf\httpd.conf
(Get-Content ${{ env.HTTPD_DEV_HOME }}\conf\httpd.conf) | %{$_ -replace "Apache24-64","Apache24"} | Set-Content -Path ${{ env.HTTPD_DEV_HOME }}\conf\httpd.conf
- name: Run
run: |
Start-Process -FilePath ${{ env.HTTPD_DEV_HOME }}\bin\httpd.exe
Expand Down
2 changes: 1 addition & 1 deletion test/httpd/Containerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM fedora:42 AS builder

ARG HTTPD_SOURCES="https://dlcdn.apache.org/httpd/httpd-2.4.65.tar.gz"
ARG HTTPD_SOURCES="https://dlcdn.apache.org/httpd/httpd-2.4.66.tar.gz"

RUN dnf install gcc apr-devel apr-util-devel openssl-devel pcre-devel redhat-rpm-config autoconf wcstools -y

Expand Down