Skip to content

Commit f45ebce

Browse files
committedDec 7, 2023
Update CI
1 parent 5eace6f commit f45ebce

File tree

1 file changed

+19
-19
lines changed

1 file changed

+19
-19
lines changed
 

‎.github/workflows/ci.yml

+19-19
Original file line numberDiff line numberDiff line change
@@ -9,49 +9,49 @@ jobs:
99
matrix:
1010
config:
1111
- {
12-
name: linux-x64-gcc-7,
13-
os: ubuntu-18.04,
14-
cxx: g++-7,
12+
name: linux-x64-gcc,
13+
os: ubuntu-latest,
14+
cxx: g++,
1515
cmake-build-type: Release
1616
}
1717
- {
18-
name: linux-x64-gcc-7-no-exceptions,
19-
os: ubuntu-18.04,
20-
cxx: g++-7,
18+
name: linux-x64-gcc-no-exceptions,
19+
os: ubuntu-latest,
20+
cxx: g++,
2121
cxx-flags: -fno-exceptions,
2222
cmake-build-type: Release
2323
}
2424
- {
25-
name: linux-x64-clang-9,
26-
os: ubuntu-18.04,
27-
cxx: clang++-9,
25+
name: linux-x64-clang,
26+
os: ubuntu-latest,
27+
cxx: clang++,
2828
cmake-build-type: Release
2929
}
3030
- {
3131
name: macos-x64-gcc,
32-
os: macos-10.15,
32+
os: macos-latest,
3333
cxx: g++,
3434
cmake-build-type: Release
3535
}
3636
- {
3737
name: macos-x64-clang,
38-
os: macos-10.15,
38+
os: macos-latest,
3939
cxx: clang++,
4040
cmake-build-type: Release
4141
}
4242
- {
43-
name: linux-x64-clang-12-sanitize,
44-
os: ubuntu-20.04,
45-
cxx: clang++-12,
43+
name: linux-x64-clang-sanitize,
44+
os: ubuntu-latest,
45+
cxx: clang++,
4646
cxx-flags: "-fsanitize=address,undefined",
4747
cmake-build-type: Release
4848
}
4949
- {
50-
name: linux-x64-gcc-10-coverage,
51-
os: ubuntu-20.04,
52-
cxx: g++-10,
50+
name: linux-x64-gcc-coverage,
51+
os: ubuntu-latest,
52+
cxx: g++,
5353
cxx-flags: --coverage,
54-
gcov-tool: gcov-10,
54+
gcov-tool: gcov,
5555
cmake-build-type: Debug
5656
}
5757
- {
@@ -133,4 +133,4 @@ jobs:
133133
sudo apt-get install -y lcov
134134
lcov -c -b ${{github.workspace}}/include -d ${{github.workspace}}/build -o ${{github.workspace}}/coverage.info --no-external --gcov-tool ${{matrix.config.gcov-tool}}
135135
bash <(curl -s https://codecov.io/bash) -f ${{github.workspace}}/coverage.info
136-
if: ${{matrix.config.name == 'linux-x64-gcc-10-coverage'}}
136+
if: ${{matrix.config.name == 'linux-x64-gcc-coverage'}}

0 commit comments

Comments
 (0)
Please sign in to comment.