From b0448fc6e0b94dd31131ba27bebee82b7f3fa41b Mon Sep 17 00:00:00 2001 From: Antonio Sanchez Date: Thu, 13 Mar 2025 11:13:35 -0700 Subject: [PATCH] Fix cxx03 testing job configuration --- ci/test.linux.gitlab-ci.yml | 20 ++++++++++++++++---- 1 file changed, 16 insertions(+), 4 deletions(-) diff --git a/ci/test.linux.gitlab-ci.yml b/ci/test.linux.gitlab-ci.yml index 754745bf6..949a9a063 100644 --- a/ci/test.linux.gitlab-ci.yml +++ b/ci/test.linux.gitlab-ci.yml @@ -46,10 +46,6 @@ test:linux:x86-64:gcc-6:default:unsupported: variables: EIGEN_CI_INSTALL: g++-10 -test:linux:x86-64:gcc-10:cxx03: - extends: .test:linux:x86-64:gcc-10:default - needs: [ build:linux:cross:x86-64:gcc-10:cxx03 ] - test:linux:x86-64:gcc-10:default:official: extends: .test:linux:x86-64:gcc-10:default variables: @@ -60,6 +56,22 @@ test:linux:x86-64:gcc-10:default:unsupported: variables: EIGEN_CI_CTEST_LABEL: Unsupported +.test:linux:x86-64:gcc-10:cxx03: + extends: .test:linux:x86-64 + needs: [ build:linux:cross:x86-64:gcc-10:cxx03 ] + variables: + EIGEN_CI_INSTALL: g++-10 + +test:linux:x86-64:gcc-10:cxx03:official: + extends: .test:linux:x86-64:gcc-10:cxx03 + variables: + EIGEN_CI_CTEST_LABEL: Official + +test:linux:x86-64:gcc-10:cxx03:unsupported: + extends: .test:linux:x86-64:gcc-10:cxx03 + variables: + EIGEN_CI_CTEST_LABEL: Unsupported + .test:linux:x86-64:gcc-10:avx: extends: .test:linux:x86-64 needs: [ build:linux:cross:x86-64:gcc-10:avx ]