aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/windows.yml
blob: 764bb25f53cd0fadbde652983b5244d6ea4e436a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
name: Windows

on:
  push:
    branches: [ "*" ]
    tags: [ "*" ]
  pull_request:
    branches: [ "trunk" ]

jobs:
  build:
    strategy:
      matrix:
        include:
          - name: Default
            os: windows-latest
            triplet: x64-windows
            arch: x64
            build-type: Debug
            generator: Ninja
            build-shared: ON
            dso-build: ON
          - name: Default x86
            os: windows-latest
            triplet: x86-windows
            arch: x86
            build-type: Debug
            generator: Ninja
            build-shared: ON
            dso-build: ON
          - name: Use Expat
            os: windows-latest
            triplet: x64-windows
            arch: x64
            build-type: Debug
            generator: Ninja
            build-shared: ON
            dso-build: ON
            packages: expat
            config: >-
              -DAPU_USE_XMLITE=OFF
              -DAPU_USE_EXPAT=ON
              -DAPU_USE_LIBXML2=OFF
          - name: Use Libxml2
            os: windows-latest
            triplet: x64-windows
            arch: x64
            build-type: Debug
            generator: Ninja
            build-shared: ON
            dso-build: ON
            packages: libxml2
            config: >-
              -DAPU_USE_XMLITE=OFF
              -DAPU_USE_EXPAT=OFF
              -DAPU_USE_LIBXML2=ON
          - name: Use XmlLite
            os: windows-latest
            triplet: x64-windows
            arch: x64
            build-type: Debug
            generator: Ninja
            build-shared: ON
            dso-build: ON
            packages: libxml2
            config: >-
              -DAPU_USE_XMLITE=ON
              -DAPU_USE_EXPAT=OFF
              -DAPU_USE_LIBXML2=OFF
          - name: Shared (no DSO)
            os: windows-latest
            triplet: x64-windows
            arch: x64
            build-type: Debug
            generator: Ninja
            build-shared: ON
            dso-build: OFF
          - name: Minimal
            os: windows-latest
            triplet: x64-windows
            arch: x64
            build-type: Debug
            generator: Ninja
            build-shared: ON
            dso-build: OFF
            config: >-
              -DAPU_HAVE_ODBC=OFF
              -DAPU_HAVE_SQLITE3=OFF
              -DAPU_HAVE_CRYPTO=OFF
          - name: "Shared: All (ODBC + Sqlite3 + PostgreSQL + Crypto + Iconv)"
            os: windows-latest
            triplet: x64-windows
            arch: x64
            build-type: Debug
            generator: Ninja
            build-shared: ON
            dso-build: ON
            packages: sqlite3 openssl libiconv libpq[core]
            config: >-
              -DAPU_HAVE_ODBC=ON
              -DAPU_HAVE_SQLITE3=ON
              -DAPU_HAVE_PGSQL=ON
              -DAPU_HAVE_CRYPTO=ON
              -DAPU_HAVE_ICONV=ON
          - name: "Static: All (ODBC + Sqlite3 + PostgreSQL + Crypto + Iconv)"
            os: windows-latest
            triplet: x64-windows-static
            arch: x64
            build-type: Debug
            generator: Ninja
            build-shared: OFF
            dso-build: OFF
            packages: sqlite3 openssl libiconv libpq[core]
            config: >-
              -DAPU_HAVE_ODBC=ON
              -DAPU_HAVE_SQLITE3=ON
              -DAPU_HAVE_PGSQL=ON
              -DAPU_HAVE_CRYPTO=ON
              -DAPU_HAVE_ICONV=ON
      fail-fast: false

    name: ${{ matrix.name }}
    # 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:
    - name: Install dependencies
      if: ${{ matrix.packages != '' }}
      run: vcpkg install --triplet ${{ matrix.triplet }} ${{ matrix.packages }}

    - uses: actions/checkout@v4

    - name: Configure CMake
      # Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make.
      # See https://cmake.org/cmake/help/latest/variable/CMAKE_BUILD_TYPE.html?highlight=cmake_build_type
      shell: cmd
      run: |
        call "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\Tools\VsDevCmd.bat" -arch=${{ matrix.arch }}
        cmake -B ${{github.workspace}}/build ^
          -G "${{ matrix.generator }}" ^
          -DCMAKE_BUILD_TYPE=${{ matrix.build-type }} ^
          -DBUILD_SHARED_LIBS=${{ matrix.build-shared }} ^
          -DAPR_MODULAR_DSO=${{ matrix.dso-build }} ^
          -DAPR_BUILD_TESTAPR=ON ^
          -DCMAKE_TOOLCHAIN_FILE=C:/vcpkg/scripts/buildsystems/vcpkg.cmake ^
          -DVCPKG_TARGET_TRIPLET=${{ matrix.triplet }} ^
          ${{ matrix.config }}

    - name: Build
      # Build your program with the given configuration
      shell: cmd
      run: |
        call "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\Tools\VsDevCmd.bat" -arch=${{ matrix.arch }}
        cmake --build ${{github.workspace}}/build --config ${{ matrix.build-type }}

    - name: Test
      working-directory: ${{github.workspace}}/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

    - name: Install
      run: cmake --install ${{github.workspace}}/build --config ${{ matrix.build-type }}