Move more jobs to gitlab runners.

This commit is contained in:
Antonio Sanchez 2025-08-29 10:06:11 -07:00
parent 2e8cc042a1
commit 5d4485e767
3 changed files with 5 additions and 8 deletions

View File

@ -226,10 +226,6 @@ build:linux:rocm-latest:gcc-10:
EIGEN_CI_CXX_COMPILER: g++-10
EIGEN_CI_BUILD_TARGET: buildtests_gpu
EIGEN_CI_ADDITIONAL_ARGS: -DEIGEN_TEST_HIP=on
tags:
- eigen-runner
- linux
- x86-64
######## Arm ###################################################################

View File

@ -9,8 +9,7 @@ deploy:tag:nightly:
- git tag -f nightly $CI_COMMIT_SHORT_SHA
- git push -f $EIGEN_CI_GIT_PUSH_URL tag nightly
tags:
- linux
- eigen-runner
- saas-linux-small-amd64
rules:
- if: $CI_PIPELINE_SOURCE == "schedule" && $CI_PROJECT_NAMESPACE == "libeigen" && $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
- if: $CI_PIPELINE_SOURCE == "web" && $CI_PROJECT_NAMESPACE == "libeigen" && $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
@ -33,8 +32,7 @@ deploy:docs:
paths:
- public
tags:
- eigen-runner
- linux
- saas-linux-small-amd64
rules:
- if: $CI_PIPELINE_SOURCE == "schedule" && $CI_PROJECT_NAMESPACE == "libeigen"
- if: $CI_PIPELINE_SOURCE == "web" && $CI_PROJECT_NAMESPACE == "libeigen"

View File

@ -453,6 +453,9 @@ macro(ei_set_sitename)
endmacro()
macro(ei_get_compilerver VAR)
if (NOT CMAKE_CXX_COMPILER_ID)
set(CMAKE_CXX_COMPILER_ID "<unknown>")
endif()
if(MSVC)
set(${VAR} "${CMAKE_CXX_COMPILER_VERSION}")
elseif(${CMAKE_CXX_COMPILER_ID} MATCHES "PGI")