svn commit: r1920343 - /apr/apr-util/trunk/.github/workflows/windows.yml
| Newsgroups | gmane.comp.apache.apr.cvs |
|---|---|
| Message-ID | <[email protected]> |
Author: ivan
Date: Sun Sep 1 14:27:56 2024
New Revision: 1920343
URL: http://svn.apache.org/viewvc?rev=1920343&view=rev
Log:
.github/workflows/windows.yml: Fix syntax.
Modified:
apr/apr-util/trunk/.github/workflows/windows.yml
Modified: apr/apr-util/trunk/.github/workflows/windows.yml
URL: http://svn.apache.org/viewvc/apr/apr-util/trunk/.github/workflows/windows.yml?rev=1920343&r1=1920342&r2=1920343&view=diff
==============================================================================
--- apr/apr-util/trunk/.github/workflows/windows.yml (original)
+++ apr/apr-util/trunk/.github/workflows/windows.yml Sun Sep 1 14:27:56 2024
@@ -27,9 +27,10 @@ jobs:
steps:
- uses: actions/checkout@v4
- repository: apache/apr
- ref: 1.7.x
- path: apr
+ with:
+ repository: apache/apr
+ ref: 1.7.x
+ path: apr
- name: Configure APR
run: cmake -B ${{github.workspace}}/apr/out/build -S ${{github.workspace}}/apr -DCMAKE_BUILD_TYPE=${{ matrix.build-type }} -G "${{ matrix.generator }}" -A ${{ matrix.arch }} -T ${{ matrix.toolset }}
@@ -41,7 +42,8 @@ jobs:
run: cmake --install ${{github.workspace}}/apr/out/build --config ${{ matrix.build-type }}
- uses: actions/checkout@v4
- path: apu
+ with:
+ path: apu
- name: Configure CMake
run: cmake -B ${{github.workspace}}/apu/build -DCMAKE_BUILD_TYPE=${{ matrix.build-type }} -DAPR_BUILD_TESTAPR=ON -DTEST_STATIC_LIBS=${{ matrix.test-static }} -G "${{ matrix.generator }}" -A ${{ matrix.arch }} -T ${{ matrix.toolset }}