Skip to content

.github/workflows/windows.yml: Fix path to sources in configure step. #3

.github/workflows/windows.yml: Fix path to sources in configure step.

.github/workflows/windows.yml: Fix path to sources in configure step. #3

Workflow file for this run

name: Windows
on:
push:
branches: [ "1.7.x" ]
tags: [ "*" ]
pull_request:
branches: [ "1.7.x" ]
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" ]
fail-fast: false
name: "MSVC ${{ matrix.toolset }} ${{ matrix.arch }} [${{ matrix.build-type }}] test-static=${{ matrix.test-static }} on ${{ matrix.os }}"
# The CMake configure and build commands are platform agnostic and should work equally well on Windows or Mac.
# You can convert this to a matrix build if you need cross-platform coverage.
# See: https://docs.github.com/en/free-pro-team@latest/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
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 }}
- name: Build APR
run: cmake --build ${{github.workspace}}/apr/out/build --config ${{ matrix.build-type }}
- name: Install APR
run: cmake --install ${{github.workspace}}/apr/out/build --config ${{ matrix.build-type }}
- uses: actions/checkout@v4
with:
path: apu
- name: Configure CMake
run: cmake -B ${{github.workspace}}/apu/build -S ${{github.workspace}}/apu -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 }}
- name: Build
# Build your program with the given configuration
run: cmake --build ${{github.workspace}}/apu/build --config ${{ matrix.build-type }}
- name: Test
working-directory: ${{github.workspace}}/apu/build
# Execute tests defined by the CMake configuration.
# See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail
run: ctest -C ${{ matrix.build-type }} --output-on-failure