This is an automated email from the ASF dual-hosted git repository.
rainerjung pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tomcat-connectors.git
The following commit(s) were added to refs/heads/main by this push:
new 6f2522095 Use git bash instead of pwsh in mod_jk build action
6f2522095 is described below
commit 6f25220956f1cc10f9efed493ba389490660873f
Author: rainerjung <[email protected]>
AuthorDate: Mon Jun 29 20:20:28 2026 +0200
Use git bash instead of pwsh in mod_jk build action
---
.github/workflows/makefile-mod_jk-win.yml | 10 ++++------
1 file changed, 4 insertions(+), 6 deletions(-)
diff --git a/.github/workflows/makefile-mod_jk-win.yml
b/.github/workflows/makefile-mod_jk-win.yml
index 0121d3d9a..f0c8baa2f 100644
--- a/.github/workflows/makefile-mod_jk-win.yml
+++ b/.github/workflows/makefile-mod_jk-win.yml
@@ -24,17 +24,15 @@ jobs:
steps:
- uses: actions/checkout@v7
- name: Download and install strawberryperl
- shell: pwsh
+ shell: bash
run: |
- echo on
curl -L -o perl.msi
https://github.com/StrawberryPerl/Perl-Dist-Strawberry/releases/download/SP_54021_64bit_UCRT/strawberry-perl-5.40.2.1-64bit.msi
- msiexec.exe /i perl.msi
+ msiexec.exe //q //i perl.msi
- name: Download and install ApacheLounge httpd
- shell: pwsh
+ shell: bash
run: |
- echo on
curl -L -o httpd.zip
https://www.apachelounge.com/download/VS18/binaries/httpd-$env:APACHE_VERSION-${{
matrix.httpd_arch }}-VS18.zip
- Expand-Archive httpd.zip -DestinationPath ApacheLounge
+ unzip -q -d ApacheLounge httpd.zip
- name: Build using Nmake
shell: cmd
run: |
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]