Skip to content

Commit c72ea44

Browse files
committed
GCC 15 and 16 in CI
1 parent a6e9c7b commit c72ea44

1 file changed

Lines changed: 22 additions & 1 deletion

File tree

.drone.star

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -401,9 +401,30 @@ def apply_special(job, special):
401401

402402
_supported_compilers = {
403403
'gcc': {
404-
'versions': ['14', '13', '12', '11', '10', '9', '8.3', '8', '7', '6', '5', '4.9', '4.8'],
404+
'versions': [
405+
'16', '15', '14', '13', '12', '11', '10', '9', '8.3', '8', '7',
406+
'6', '5', '4.9', '4.8'
407+
],
405408
'display_name': 'GCC',
406409
'executable': 'g++',
410+
'16': {
411+
'latest_cpp': 2026,
412+
'platforms': {
413+
('linux', 'x86_64'): {
414+
'image': 'cppalliance/droneubuntu2604:1',
415+
'packages': ['g++-16'],
416+
}
417+
},
418+
},
419+
'15': {
420+
'latest_cpp': 2026,
421+
'platforms': {
422+
('linux', 'x86_64'): {
423+
'image': 'cppalliance/droneubuntu2604:1',
424+
'packages': ['g++-15'],
425+
}
426+
},
427+
},
407428
'14': {
408429
'latest_cpp': 2026,
409430
'platforms': {

0 commit comments

Comments
 (0)