Author: ivan Date: Fri Jul 5 15:00:37 2024 New Revision: 1918938 URL: http://svn.apache.org/viewvc?rev=1918938&view=rev Log: * .github/workflows/windows-cmake.yml: Run on multiple vcpkg triplets.
Modified: serf/trunk/.github/workflows/windows-cmake.yml Modified: serf/trunk/.github/workflows/windows-cmake.yml URL: http://svn.apache.org/viewvc/serf/trunk/.github/workflows/windows-cmake.yml?rev=1918938&r1=1918937&r2=1918938&view=diff ============================================================================== --- serf/trunk/.github/workflows/windows-cmake.yml (original) +++ serf/trunk/.github/workflows/windows-cmake.yml Fri Jul 5 15:00:37 2024 @@ -15,16 +15,16 @@ jobs: matrix: os: [windows-latest] build-type: [Debug, Release] + triplet: + - x64-windows + - x86-windows generator: [ "Ninja" ] fail-fast: false runs-on: ${{ matrix.os }} steps: - - name: Get apr - run: vcpkg install apr - - - name: Get apr-util - run: vcpkg install apr-util + - name: Install dependencies + run: vcpkg install --triplet ${{ matrix.triplet }} apr apr-util - uses: actions/checkout@v3