diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1ceb5372..f9445f09 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 @@ -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 diff --git a/test/httpd/Containerfile b/test/httpd/Containerfile index 472e6701..96648722 100644 --- a/test/httpd/Containerfile +++ b/test/httpd/Containerfile @@ -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