File tree Expand file tree Collapse file tree 1 file changed +6
-12
lines changed Expand file tree Collapse file tree 1 file changed +6
-12
lines changed Original file line number Diff line number Diff line change @@ -16,12 +16,12 @@ jobs:
16
16
build :
17
17
runs-on : ${{ matrix.os }}
18
18
strategy :
19
- fail-fast : true
19
+ fail-fast : false
20
20
matrix :
21
21
os :
22
- - ubuntu-22.04
23
- - windows-2022
24
- - macos-12
22
+ - ubuntu-latest
23
+ - windows-latest
24
+ - macos-latest
25
25
preset :
26
26
- cpp14
27
27
- cpp17
52
52
if : ${{ runner.os == 'Windows' }}
53
53
uses : ilammy/msvc-dev-cmd@v1
54
54
55
- - name : Create Debug build directory
56
- run : mkdir build-debug
57
-
58
55
- name : Configure Debug Build
59
56
run : >
60
- cmake -S . -B ./build-debug -G Ninja - -preset ${{ matrix.preset }}
57
+ cmake -S . -B ./build-debug --preset ${{ matrix.preset }}
61
58
-DCMAKE_BUILD_TYPE=Debug
62
59
-DBUILD_TESTING=ON
63
60
-DKDALGORITHMS_BUILD_TEST=ON
72
69
# the only value of a Release build is that maybe the compiler
73
70
# does some optimization that breaks them we do both builds
74
71
# in the same worker.
75
- - name : Create Release build directory
76
- run : mkdir build-release
77
-
78
72
- name : Configure Release Build
79
73
run : >
80
- cmake -S . -B ./build-release -G Ninja - -preset ${{ matrix.preset }}
74
+ cmake -S . -B ./build-release --preset ${{ matrix.preset }}
81
75
-DCMAKE_BUILD_TYPE=Release
82
76
-DBUILD_TESTING=ON
83
77
-DKDALGORITHMS_BUILD_TEST=ON
You can’t perform that action at this time.
0 commit comments