File: linux.yml

package info (click to toggle)
frozen 1.2.0-2
  • links: PTS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,244 kB
  • sloc: cpp: 18,992; ansic: 788; makefile: 77
file content (50 lines) | stat: -rw-r--r-- 1,193 bytes parent folder | download
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
name: CI

on: [push]

jobs:
  build_frozen:
    runs-on: ubuntu-latest
    strategy:
      fail-fast: false
      matrix:
        cxxstandard:
          - 14
          - 17
          - 2a
        include:
          - compiler: g++-10
            stdlib: libstdc++
          - compiler: g++-11
            stdlib: libstdc++
          - compiler: g++-12
            stdlib: libstdc++
          - compiler: g++-13
            stdlib: libstdc++
          - compiler: clang++-13
            stdlib: libc++
          - compiler: clang++-14
            stdlib: libc++
          - compiler: clang++-15
            stdlib: libstdc++
    steps:
    - name: Checkout
      uses: actions/checkout@v4

    - name: Prepare
      run: cmake -E make_directory build

    - name: Configure
      working-directory: build
      env:
          CXX: ${{matrix.compiler}}
          CXXFLAGS: -std=c++${{matrix.cxxstandard}} -stdlib=${{matrix.stdlib}}
      run: cmake -DCMAKE_BUILD_TYPE=DEBUG "-Dfrozen.coverage=ON" -DCMAKE_VERBOSE_MAKEFILE=ON ..

    - name: Build
      working-directory: build
      run: cmake --build .

    - name: Test
      working-directory: build
      run: cmake --build . --target test