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 0be07def6 Add action to build isapi redirector
0be07def6 is described below

commit 0be07def6eea4c121b86d5580e558d3c001319b6
Author: rainerjung <[email protected]>
AuthorDate: Tue Jun 23 13:19:32 2026 +0200

    Add action to build isapi redirector
    
    Based on tomcat-native action
---
 .github/workflows/makefile.yml | 43 ++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 43 insertions(+)

diff --git a/.github/workflows/makefile.yml b/.github/workflows/makefile.yml
new file mode 100644
index 000000000..f561ab90f
--- /dev/null
+++ b/.github/workflows/makefile.yml
@@ -0,0 +1,43 @@
+name: Makefile CI
+
+on:
+  push:
+  pull_request:
+
+permissions:
+  contents: read
+
+jobs:
+  build:
+    strategy:
+      fail-fast: false
+      matrix:
+        include:
+          - name: Default
+            triplet: x64-windows
+            arch: x64
+            build-arch: X64
+            build-type: Debug
+            generator: "Ninja"
+    runs-on: windows-latest
+    steps:
+    - uses: actions/checkout@v7
+    - name: Download and install strawberryperl
+      shell: pwsh
+      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
+    - name: Build using Nmake
+      shell: cmd
+      run: |
+            echo on
+            call "C:\Program Files\Microsoft Visual 
Studio\18\Enterprise\Common7\Tools\VsDevCmd.bat" -arch=${{ matrix.arch }}
+            cd native
+            cd iis
+            echo "Building for ${{ matrix.build-arch }}"
+            nmake -f Makefile.vc CPU=${{ matrix.build-arch }} 
STATIC_CRT=Hybrid PCRE=pcre2
+    - uses: actions/upload-artifact@v7
+      with:
+        name: windows-artifact
+        path: native\iis\WIN10_X64_DLL_RELEASE\isapi_redirect.dll


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to