Temporarily disable aarch64 CI.

This commit is contained in:
Everton Constantino 2022-03-10 09:34:19 -03:00
parent 2a6be5492f
commit 7882408856
2 changed files with 69 additions and 69 deletions

View File

@ -87,28 +87,28 @@ build:x86-64:linux:clang-10:cxx11-on:avx512:
######## AArch64 ############################################################### ######## AArch64 ###############################################################
# GCC-10 # GCC-10
build:aarch64:linux:gcc-10:cxx11-on: # build:aarch64:linux:gcc-10:cxx11-on:
extends: .build:linux:base # extends: .build:linux:base
variables: # variables:
EIGEN_CI_CXX_COMPILER: "g++-10" # EIGEN_CI_CXX_COMPILER: "g++-10"
EIGEN_CI_CC_COMPILER: "gcc-10" # EIGEN_CI_CC_COMPILER: "gcc-10"
EIGEN_TEST_CXX11: "on" # EIGEN_TEST_CXX11: "on"
tags: # tags:
- eigen-runner # - eigen-runner
- linux # - linux
- aarch64 # - aarch64
# Clang-10 # # Clang-10
build:aarch64:linux:clang-10:cxx11-on: # build:aarch64:linux:clang-10:cxx11-on:
extends: .build:linux:base # extends: .build:linux:base
variables: # variables:
EIGEN_CI_CXX_COMPILER: "clang++-10" # EIGEN_CI_CXX_COMPILER: "clang++-10"
EIGEN_CI_CC_COMPILER: "clang-10" # EIGEN_CI_CC_COMPILER: "clang-10"
EIGEN_TEST_CXX11: "on" # EIGEN_TEST_CXX11: "on"
tags: # tags:
- eigen-runner # - eigen-runner
- linux # - linux
- aarch64 # - aarch64
######## ppc64le ############################################################### ######## ppc64le ###############################################################
# Currently all ppc64le jobs are allowed to fail # Currently all ppc64le jobs are allowed to fail

View File

@ -37,7 +37,7 @@
# EIGEN_CI_CXX_COMPILER: g++-4.8 # EIGEN_CI_CXX_COMPILER: g++-4.8
# EIGEN_CI_CC_COMPILER: gcc-4.8 # EIGEN_CI_CC_COMPILER: gcc-4.8
# needs: [ "build:x86-64:linux:gcc-4.8:cxx11-on" ] # needs: [ "build:x86-64:linux:gcc-4.8:cxx11-on" ]
# tags: # tags:
# - eigen-runner # - eigen-runner
# - linux # - linux
# - x86-64 # - x86-64
@ -59,7 +59,7 @@
EIGEN_CI_CXX_COMPILER: g++-9 EIGEN_CI_CXX_COMPILER: g++-9
EIGEN_CI_CC_COMPILER: gcc-9 EIGEN_CI_CC_COMPILER: gcc-9
needs: [ "build:x86-64:linux:gcc-9:cxx11-on" ] needs: [ "build:x86-64:linux:gcc-9:cxx11-on" ]
tags: tags:
- eigen-runner - eigen-runner
- linux - linux
- x86-64 - x86-64
@ -81,7 +81,7 @@ test:x86-64:linux:gcc-9:cxx11-on:unsupported:
EIGEN_CI_CXX_COMPILER: g++-10 EIGEN_CI_CXX_COMPILER: g++-10
EIGEN_CI_CC_COMPILER: gcc-10 EIGEN_CI_CC_COMPILER: gcc-10
needs: [ "build:x86-64:linux:gcc-10:cxx11-on" ] needs: [ "build:x86-64:linux:gcc-10:cxx11-on" ]
tags: tags:
- eigen-runner - eigen-runner
- linux - linux
- x86-64 - x86-64
@ -105,7 +105,7 @@ test:x86-64:linux:gcc-10:cxx11-on:unsupported:
EIGEN_CI_CXX_COMPILER: clang++-10 EIGEN_CI_CXX_COMPILER: clang++-10
EIGEN_CI_CC_COMPILER: clang-10 EIGEN_CI_CC_COMPILER: clang-10
needs: [ "build:x86-64:linux:clang-10:cxx11-on" ] needs: [ "build:x86-64:linux:clang-10:cxx11-on" ]
tags: tags:
- eigen-runner - eigen-runner
- linux - linux
- x86-64 - x86-64
@ -119,14 +119,14 @@ test:x86-64:linux:clang-10:cxx11-on:unsupported:
extends: .test:x86-64:linux:clang-10:cxx11-on extends: .test:x86-64:linux:clang-10:cxx11-on
variables: variables:
EIGEN_CI_TEST_LABEL: "Unsupported" EIGEN_CI_TEST_LABEL: "Unsupported"
.test:x86-64:linux:clang-10:cxx11-on:avx512: .test:x86-64:linux:clang-10:cxx11-on:avx512:
extends: .test:linux:base extends: .test:linux:base
variables: variables:
EIGEN_CI_CXX_COMPILER: clang++-10 EIGEN_CI_CXX_COMPILER: clang++-10
EIGEN_CI_CC_COMPILER: clang-10 EIGEN_CI_CC_COMPILER: clang-10
needs: [ "build:x86-64:linux:clang-10:cxx11-on:avx512" ] needs: [ "build:x86-64:linux:clang-10:cxx11-on:avx512" ]
tags: tags:
- eigen-runner - eigen-runner
- linux - linux
- x86-64 - x86-64
@ -144,51 +144,51 @@ test:x86-64:linux:clang-10:cxx11-on:avx512:unsupported:
##### AArch64 ################################################################## ##### AArch64 ##################################################################
# GCC-10 # GCC-10
.test:aarch64:linux:gcc-10:cxx11-on: # .test:aarch64:linux:gcc-10:cxx11-on:
extends: .test:linux:base # extends: .test:linux:base
variables: # variables:
EIGEN_CI_CXX_COMPILER: g++-10 # EIGEN_CI_CXX_COMPILER: g++-10
EIGEN_CI_CC_COMPILER: gcc-10 # EIGEN_CI_CC_COMPILER: gcc-10
needs: [ "build:aarch64:linux:gcc-10:cxx11-on" ] # needs: [ "build:aarch64:linux:gcc-10:cxx11-on" ]
tags: # tags:
- eigen-runner # - eigen-runner
- linux # - linux
- aarch64 # - aarch64
test:aarch64:linux:gcc-10:cxx11-on:official: # test:aarch64:linux:gcc-10:cxx11-on:official:
extends: .test:aarch64:linux:gcc-10:cxx11-on # extends: .test:aarch64:linux:gcc-10:cxx11-on
allow_failure: true # allow_failure: true
variables: # variables:
EIGEN_CI_TEST_LABEL: "Official" # EIGEN_CI_TEST_LABEL: "Official"
test:aarch64:linux:gcc-10:cxx11-on:unsupported: # test:aarch64:linux:gcc-10:cxx11-on:unsupported:
extends: .test:aarch64:linux:gcc-10:cxx11-on # extends: .test:aarch64:linux:gcc-10:cxx11-on
allow_failure: true # allow_failure: true
variables: # variables:
EIGEN_CI_TEST_LABEL: "Unsupported" # EIGEN_CI_TEST_LABEL: "Unsupported"
# Clang 10 # # Clang 10
.test:aarch64:linux:clang-10:cxx11-on: # .test:aarch64:linux:clang-10:cxx11-on:
extends: .test:linux:base # extends: .test:linux:base
variables: # variables:
EIGEN_CI_CXX_COMPILER: clang++-10 # EIGEN_CI_CXX_COMPILER: clang++-10
EIGEN_CI_CC_COMPILER: clang-10 # EIGEN_CI_CC_COMPILER: clang-10
needs: [ "build:aarch64:linux:clang-10:cxx11-on" ] # needs: [ "build:aarch64:linux:clang-10:cxx11-on" ]
tags: # tags:
- eigen-runner # - eigen-runner
- linux # - linux
- aarch64 # - aarch64
test:aarch64:linux:clang-10:cxx11-on:official: # test:aarch64:linux:clang-10:cxx11-on:official:
extends: .test:aarch64:linux:clang-10:cxx11-on # extends: .test:aarch64:linux:clang-10:cxx11-on
allow_failure: true # allow_failure: true
variables: # variables:
EIGEN_CI_TEST_LABEL: "Official" # EIGEN_CI_TEST_LABEL: "Official"
test:aarch64:linux:clang-10:cxx11-on:unsupported: # test:aarch64:linux:clang-10:cxx11-on:unsupported:
extends: .test:aarch64:linux:clang-10:cxx11-on # extends: .test:aarch64:linux:clang-10:cxx11-on
variables: # variables:
EIGEN_CI_TEST_LABEL: "Unsupported" # EIGEN_CI_TEST_LABEL: "Unsupported"
##### ppc64le ################################################################## ##### ppc64le ##################################################################
# GCC-10 # GCC-10
@ -199,7 +199,7 @@ test:aarch64:linux:clang-10:cxx11-on:unsupported:
EIGEN_CI_CC_COMPILER: gcc-10 EIGEN_CI_CC_COMPILER: gcc-10
needs: [ "build:ppc64le:linux:gcc-10:cxx11-on" ] needs: [ "build:ppc64le:linux:gcc-10:cxx11-on" ]
allow_failure: true allow_failure: true
tags: tags:
- eigen-runner - eigen-runner
- linux - linux
- ppc64le - ppc64le
@ -222,7 +222,7 @@ test:ppc64le:linux:gcc-10:cxx11-on:unsupported:
EIGEN_CI_CC_COMPILER: clang-10 EIGEN_CI_CC_COMPILER: clang-10
needs: [ "build:ppc64le:linux:clang-10:cxx11-on" ] needs: [ "build:ppc64le:linux:clang-10:cxx11-on" ]
allow_failure: true allow_failure: true
tags: tags:
- eigen-runner - eigen-runner
- linux - linux
- ppc64le - ppc64le