Skip to content

Commit 55bb12c

Browse files
authored
Merge pull request #362 from jajik/update-httpd
Update httpd used in tests and CI to the latest release (2.4.66)
2 parents 78488af + e113fe7 commit 55bb12c

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,10 +196,11 @@ jobs:
196196
cmake-windows-latest:
197197
runs-on: ${{ matrix.os }}
198198
strategy:
199+
fail-fast: false
199200
matrix:
200201
os: [ windows-latest, windows-11-arm ]
201202
env:
202-
APACHE_LOUNGE_DISTRO_VERSION: 2.4.65-250724
203+
APACHE_LOUNGE_DISTRO_VERSION: 2.4.66-251206
203204
HTTPD_DEV_HOME: 'C:\Apache24'
204205
steps:
205206
- name: Checkout
@@ -220,6 +221,7 @@ jobs:
220221
echo "LogLevel debug" >> ${{ env.HTTPD_DEV_HOME }}\conf\mod_proxy_cluster.conf
221222
echo "Include conf/mod_proxy_cluster.conf" >> ${{ env.HTTPD_DEV_HOME }}\conf\httpd.conf
222223
(Get-Content ${{ env.HTTPD_DEV_HOME }}\conf\httpd.conf) | %{$_ -replace "Listen 80","#Listen 80"} | Set-Content -Path ${{ env.HTTPD_DEV_HOME }}\conf\httpd.conf
224+
(Get-Content ${{ env.HTTPD_DEV_HOME }}\conf\httpd.conf) | %{$_ -replace "Apache24-64","Apache24"} | Set-Content -Path ${{ env.HTTPD_DEV_HOME }}\conf\httpd.conf
223225
- name: Run
224226
run: |
225227
Start-Process -FilePath ${{ env.HTTPD_DEV_HOME }}\bin\httpd.exe

test/httpd/Containerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM fedora:42 AS builder
22

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

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

0 commit comments

Comments
 (0)