File tree Expand file tree Collapse file tree 2 files changed +35
-33
lines changed Expand file tree Collapse file tree 2 files changed +35
-33
lines changed Original file line number Diff line number Diff line change @@ -18,43 +18,14 @@ jobs:
18
18
compiler:
19
19
- g++-9
20
20
- g++-10
21
- - clang++-10
22
- - clang++-11
23
- - clang++-12
24
- build_type: [Debug, Release]
25
-
26
- runs-on: ubuntu-latest
27
-
28
- env:
29
- CXX: ${{ matrix.compiler }}
30
-
31
- steps:
32
- - uses: actions/checkout@v3
33
- with:
34
- submodules: recursive
35
-
36
- - run: cmake -E make_directory build
37
-
38
- - working-directory: build/
39
- run: cmake $GITHUB_WORKSPACE -DCMAKE_BUILD_TYPE=${{ matrix.build_type }}
40
-
41
- - working-directory: build/
42
- run: cmake --build .
43
-
44
- - working-directory: build/
45
- run: ctest --output-on-failure
46
-
47
- linux-new:
48
- strategy:
49
- fail-fast: false
50
- matrix:
51
- compiler:
52
21
- g++-11
22
+ - g++-12
23
+ - clang++-12
53
24
- clang++-13
54
25
- clang++-14
55
26
build_type: [Debug, Release]
56
27
57
- runs-on: ubuntu-22.04
28
+ runs-on: ubuntu-latest
58
29
59
30
env:
60
31
CXX: ${{ matrix.compiler }}
85
56
- clang++-7
86
57
- clang++-8
87
58
- clang++-9
59
+ - clang++-10
60
+ - clang++-11
88
61
build_type: [Debug, Release]
89
62
90
63
runs-on: ubuntu-20.04
Original file line number Diff line number Diff line change 15
15
strategy:
16
16
fail-fast: false
17
17
matrix:
18
- xcode: ['11 ', '12', '13 ']
18
+ xcode: ['13 ', '14 ']
19
19
build_type: [Debug, Release]
20
20
21
21
runs-on: macos-latest
39
39
40
40
- working-directory: build/
41
41
run: ctest --config ${{ matrix.build_type }} --output-on-failure
42
+
43
+ xcode-old:
44
+ strategy:
45
+ fail-fast: false
46
+ matrix:
47
+ xcode: ['11', '12']
48
+ build_type: [Debug, Release]
49
+
50
+ runs-on: macos-11
51
+
52
+ steps:
53
+ - uses: actions/checkout@v3
54
+ with:
55
+ submodules: recursive
56
+
57
+ - uses: maxim-lobanov/setup-xcode@v1
58
+ with:
59
+ xcode-version: ${{ matrix.xcode }}
60
+
61
+ - run: cmake -E make_directory build
62
+
63
+ - working-directory: build/
64
+ run: cmake $GITHUB_WORKSPACE
65
+
66
+ - working-directory: build/
67
+ run: cmake --build . --config ${{ matrix.build_type }}
68
+
69
+ - working-directory: build/
70
+ run: ctest --config ${{ matrix.build_type }} --output-on-failure
You can’t perform that action at this time.
0 commit comments