svn commit: r1920347 - /apr/apr-util/branches/1.7.x/.github/workflows/windows.yml
| Newsgroups | gmane.comp.apache.apr.cvs |
|---|---|
| Message-ID | <[email protected]> |
Author: ivan
Date: Sun Sep 1 14:46:20 2024
New Revision: 1920347
URL: http://svn.apache.org/viewvc?rev=1920347&view=rev
Log:
.github/workflows/windows.yml: Reconfigure matrix to include triplet parameter.
Modified:
apr/apr-util/branches/1.7.x/.github/workflows/windows.yml
Modified: apr/apr-util/branches/1.7.x/.github/workflows/windows.yml
URL: http://svn.apache.org/viewvc/apr/apr-util/branches/1.7.x/.github/workflows/windows.yml?rev=1920347&r1=1920346&r2=1920347&view=diff
==============================================================================
--- apr/apr-util/branches/1.7.x/.github/workflows/windows.yml (original)
+++ apr/apr-util/branches/1.7.x/.github/workflows/windows.yml Sun Sep 1 14:46:20 2024
@@ -11,12 +11,12 @@ jobs:
build:
strategy:
matrix:
- os: [windows-latest]
- build-type: [Debug, Release]
- generator: [ "Visual Studio 17 2022" ]
- arch: [ "Win32", "x64" ]
- toolset: [ "v143", "v142" ]
- test-static: [ "ON", "OFF" ]
+ include:
+ - name: Default
+ triplet: x64-windows
+ arch: x64
+ build-type: Debug
+ generator: "Visual Studio 17 2022"
fail-fast: false
name: "MSVC ${{ matrix.toolset }} ${{ matrix.arch }} [${{ matrix.build-type }}] test-static=${{ matrix.test-static }} on ${{ matrix.os }}"