CI: Add ubuntu 20.04 (gcc 9) check

This commit is contained in:
Dennis Klein 2021-05-28 09:14:18 +02:00 committed by Dennis Klein
parent 20200f02a3
commit 2b438452a0

1
Jenkinsfile vendored
View File

@ -79,6 +79,7 @@ pipeline{
steps{ steps{
script { script {
def builds = jobMatrix('build', [ def builds = jobMatrix('build', [
[os: 'ubuntu', ver: '20.04', arch: 'x86_64', compiler: 'gcc-9'],
[os: 'fedora', ver: '32', arch: 'x86_64', compiler: 'gcc-10'], [os: 'fedora', ver: '32', arch: 'x86_64', compiler: 'gcc-10'],
[os: 'fedora', ver: '34', arch: 'x86_64', compiler: 'gcc-11'], [os: 'fedora', ver: '34', arch: 'x86_64', compiler: 'gcc-11'],
[os: 'macos', ver: '11', arch: 'x86_64', compiler: 'apple-clang-12'], [os: 'macos', ver: '11', arch: 'x86_64', compiler: 'apple-clang-12'],