aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/build.yml
blob: 012c3145faad08d31c974a80d33ce3160c4f216f (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
name: build

on: [push, pull_request]

jobs:
  unix:
    strategy:
      matrix:
        os: [ubuntu, macos]
        compiler: [g++, clang++]
        defines: [standard, PUGIXML_WCHAR_MODE, PUGIXML_COMPACT, PUGIXML_NO_EXCEPTIONS]
        exclude:
          - os: macos
            compiler: g++
    runs-on: ${{matrix.os}}-latest
    steps:
    - uses: actions/checkout@v1
    - name: make test
      run: |
        export CXX=${{matrix.compiler}}
        make test cxxstd=c++11 defines=${{matrix.defines}} config=release -j2
        make test cxxstd=c++98 defines=${{matrix.defines}} config=debug -j2
        make test defines=${{matrix.defines}} config=sanitize -j2
    - name: make coverage
      if: ${{matrix.os == 'ubuntu' && matrix.compiler == 'clang++'}}
      run: |
        make test defines=${{matrix.defines}} config=coverage -j2
        bash <(curl -s https://codecov.io/bash) -f pugixml.cpp.gcov -X search -t ${{secrets.CODECOV_TOKEN}} -B ${{github.ref}}

  windows:
    runs-on: windows-latest
    strategy:
      matrix:
        arch: [Win32, x64]
        defines: [standard, PUGIXML_WCHAR_MODE, PUGIXML_COMPACT, PUGIXML_NO_EXCEPTIONS]
    steps:
    - uses: actions/checkout@v1
    - name: cmake configure
      run: cmake . -DPUGIXML_BUILD_TESTS=ON -DPUGIXML_BUILD_DEFINES=${{matrix.defines}} -A ${{matrix.arch}}
    - name: cmake test
      shell: bash # necessary for fail-fast
      run: |
        cmake --build . -- -property:Configuration=Debug -verbosity:minimal
        Debug/pugixml-check.exe
        cmake --build . -- -property:Configuration=Release -verbosity:minimal
        Release/pugixml-check.exe