Skip to content

Commit ff18d01

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

1 file changed

Lines changed: 24 additions & 1 deletion

File tree

.drone.star

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -401,9 +401,32 @@ 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+
'environment': {'UBUNTU_TOOLCHAIN_DISABLE': 'true'},
417+
}
418+
},
419+
},
420+
'15': {
421+
'latest_cpp': 2026,
422+
'platforms': {
423+
('linux', 'x86_64'): {
424+
'image': 'cppalliance/droneubuntu2604:1',
425+
'packages': ['g++-15'],
426+
'environment': {'UBUNTU_TOOLCHAIN_DISABLE': 'true'},
427+
}
428+
},
429+
},
407430
'14': {
408431
'latest_cpp': 2026,
409432
'platforms': {

0 commit comments

Comments
 (0)