From 4a5842963a315579c0d3b5279194712a4ed759ab Mon Sep 17 00:00:00 2001 From: Alexey Rybalchenko Date: Wed, 21 Feb 2024 14:06:58 +0100 Subject: [PATCH] Update CI nodes --- Jenkinsfile | 5 +++++ test/ci/CMakeLists.txt | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/Jenkinsfile b/Jenkinsfile index f8c3aed..ad1412f 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -62,6 +62,11 @@ pipeline{ [os: 'fedora', ver: '32', arch: 'x86_64', compiler: 'gcc-10'], [os: 'fedora', ver: '33', arch: 'x86_64', compiler: 'gcc-10'], [os: 'fedora', ver: '34', arch: 'x86_64', compiler: 'gcc-11'], + [os: 'fedora', ver: '35', arch: 'x86_64', compiler: 'gcc-11'], + [os: 'fedora', ver: '36', arch: 'x86_64', compiler: 'gcc-12'], + [os: 'fedora', ver: '37', arch: 'x86_64', compiler: 'gcc-12'], + [os: 'fedora', ver: '38', arch: 'x86_64', compiler: 'gcc-13'], + [os: 'fedora', ver: '39', arch: 'x86_64', compiler: 'gcc-13'], [os: 'macos', ver: '13', arch: 'x86_64', compiler: 'apple-clang-15'], [os: 'macos', ver: '14', arch: 'x86_64', compiler: 'apple-clang-15'], [os: 'macos', ver: '14', arch: 'arm64', compiler: 'apple-clang-15'], diff --git a/test/ci/CMakeLists.txt b/test/ci/CMakeLists.txt index 6459895..48887e5 100644 --- a/test/ci/CMakeLists.txt +++ b/test/ci/CMakeLists.txt @@ -32,5 +32,10 @@ endfunction() container(OS fedora VERSION 32) container(OS fedora VERSION 33) container(OS fedora VERSION 34) +container(OS fedora VERSION 35) +container(OS fedora VERSION 36) +container(OS fedora VERSION 37) +container(OS fedora VERSION 38) +container(OS fedora VERSION 39) add_custom_target(all-containers DEPENDS ${containers})