Skip to content

Commit 0da5fec

Browse files
committed
Add gcc-15 builds to CI
1 parent cc040f8 commit 0da5fec

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.github/workflows/ci.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -360,6 +360,31 @@ jobs:
360360
cxx_standard: 23,
361361
cxx_asan: true,
362362
}
363+
# GCC-15
364+
- {
365+
name: "Linux GCC 15 C++17",
366+
os: ubuntu-latest,
367+
container: { image: "ghcr.io/rollbear/gcc:15" },
368+
compiler: gcc,
369+
cxx_standard: 17,
370+
cxx_asan: true,
371+
}
372+
- {
373+
name: "Linux GCC 15 C++20",
374+
os: ubuntu-latest,
375+
container: { image: "ghcr.io/rollbear/gcc:15" },
376+
compiler: gcc,
377+
cxx_standard: 20,
378+
cxx_asan: true,
379+
}
380+
- {
381+
name: "Linux GCC 15 C++23",
382+
os: ubuntu-latest,
383+
container: { image: "ghcr.io/rollbear/gcc:15" },
384+
compiler: gcc,
385+
cxx_standard: 23,
386+
cxx_asan: true,
387+
}
363388

364389
# # Clang-3.5
365390
# - {

0 commit comments

Comments
 (0)