123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388 |
- .test:linux:base:
- stage: test
- image: ubuntu:18.04
- retry: 2
- before_script:
- - apt-get update -y
- - apt-get install -y --no-install-recommends software-properties-common
- - add-apt-repository -y ppa:ubuntu-toolchain-r/test
- - apt-get update
- - apt-get install --no-install-recommends -y ${EIGEN_CI_CXX_COMPILER}
- ${EIGEN_CI_CC_COMPILER} cmake ninja-build xsltproc
- script:
- - export CXX=${EIGEN_CI_CXX_COMPILER}
- - export CC=${EIGEN_CI_CC_COMPILER}
- - cd ${BUILDDIR} && ctest --output-on-failure --no-compress-output
- --build-no-clean -T test -L ${EIGEN_CI_TEST_LABEL}
- after_script:
- - apt-get update -y
- - apt-get install --no-install-recommends -y xsltproc
- - cd ${BUILDDIR}
- - xsltproc ../ci/CTest2JUnit.xsl Testing/`head -n 1 < Testing/TAG`/Test.xml > "JUnitTestResults_$CI_JOB_ID.xml"
- artifacts:
- reports:
- junit:
- - ${BUILDDIR}/JUnitTestResults_$CI_JOB_ID.xml
- expire_in: 5 days
- only:
- - schedules
- ##### x86-64 ###################################################################
- # GCC-4.8
- .test:x86-64:linux:gcc-4.8:cxx11-off:
- extends: .test:linux:base
- variables:
- EIGEN_CI_CXX_COMPILER: g++-4.8
- EIGEN_CI_CC_COMPILER: gcc-4.8
- needs: [ "build:x86-64:linux:gcc-4.8:cxx11-off" ]
- tags:
- - eigen-runner
- - linux
- - x86-64
- test:x86-64:linux:gcc-4.8:cxx11-off:official:
- extends: .test:x86-64:linux:gcc-4.8:cxx11-off
- variables:
- EIGEN_CI_TEST_LABEL: "Official"
- test:x86-64:linux:gcc-4.8:cxx11-off:unsupported:
- extends: .test:x86-64:linux:gcc-4.8:cxx11-off
- variables:
- EIGEN_CI_TEST_LABEL: "Unsupported"
- .test:x86-64:linux:gcc-4.8:cxx11-on:
- extends: .test:linux:base
- variables:
- EIGEN_CI_CXX_COMPILER: g++-4.8
- EIGEN_CI_CC_COMPILER: gcc-4.8
- needs: [ "build:x86-64:linux:gcc-4.8:cxx11-on" ]
- tags:
- - eigen-runner
- - linux
- - x86-64
- test:x86-64:linux:gcc-4.8:cxx11-on:official:
- extends: .test:x86-64:linux:gcc-4.8:cxx11-on
- variables:
- EIGEN_CI_TEST_LABEL: "Official"
- test:x86-64:linux:gcc-4.8:cxx11-on:unsupported:
- extends: .test:x86-64:linux:gcc-4.8:cxx11-on
- variables:
- EIGEN_CI_TEST_LABEL: "Unsupported"
- # GCC-9
- .test:x86-64:linux:gcc-9:cxx11-off:
- extends: .test:linux:base
- variables:
- EIGEN_CI_CXX_COMPILER: g++-9
- EIGEN_CI_CC_COMPILER: gcc-9
- needs: [ "build:x86-64:linux:gcc-9:cxx11-off" ]
- tags:
- - eigen-runner
- - linux
- - x86-64
- test:x86-64:linux:gcc-9:cxx11-off:official:
- extends: .test:x86-64:linux:gcc-9:cxx11-off
- variables:
- EIGEN_CI_TEST_LABEL: "Official"
- test:x86-64:linux:gcc-9:cxx11-off:unsupported:
- extends: .test:x86-64:linux:gcc-9:cxx11-off
- variables:
- EIGEN_CI_TEST_LABEL: "Unsupported"
- .test:x86-64:linux:gcc-9:cxx11-on:
- extends: .test:linux:base
- variables:
- EIGEN_CI_CXX_COMPILER: g++-9
- EIGEN_CI_CC_COMPILER: gcc-9
- needs: [ "build:x86-64:linux:gcc-9:cxx11-on" ]
- tags:
- - eigen-runner
- - linux
- - x86-64
- test:x86-64:linux:gcc-9:cxx11-on:official:
- extends: .test:x86-64:linux:gcc-9:cxx11-on
- variables:
- EIGEN_CI_TEST_LABEL: "Official"
- test:x86-64:linux:gcc-9:cxx11-on:unsupported:
- extends: .test:x86-64:linux:gcc-9:cxx11-on
- variables:
- EIGEN_CI_TEST_LABEL: "Unsupported"
- # GCC-10
- .test:x86-64:linux:gcc-10:cxx11-off:
- extends: .test:linux:base
- variables:
- EIGEN_CI_CXX_COMPILER: g++-10
- EIGEN_CI_CC_COMPILER: gcc-10
- needs: [ "build:x86-64:linux:gcc-10:cxx11-off" ]
- tags:
- - eigen-runner
- - linux
- - x86-64
- test:x86-64:linux:gcc-10:cxx11-off:official:
- extends: .test:x86-64:linux:gcc-10:cxx11-off
- allow_failure: true
- variables:
- EIGEN_CI_TEST_LABEL: "Official"
- test:x86-64:linux:gcc-10:cxx11-off:unsupported:
- extends: .test:x86-64:linux:gcc-10:cxx11-off
- variables:
- EIGEN_CI_TEST_LABEL: "Unsupported"
- .test:x86-64:linux:gcc-10:cxx11-on:
- extends: .test:linux:base
- variables:
- EIGEN_CI_CXX_COMPILER: g++-10
- EIGEN_CI_CC_COMPILER: gcc-10
- needs: [ "build:x86-64:linux:gcc-10:cxx11-on" ]
- tags:
- - eigen-runner
- - linux
- - x86-64
- test:x86-64:linux:gcc-10:cxx11-on:official:
- extends: .test:x86-64:linux:gcc-10:cxx11-on
- allow_failure: true
- variables:
- EIGEN_CI_TEST_LABEL: "Official"
- test:x86-64:linux:gcc-10:cxx11-on:unsupported:
- extends: .test:x86-64:linux:gcc-10:cxx11-on
- allow_failure: true
- variables:
- EIGEN_CI_TEST_LABEL: "Unsupported"
- # Clang 10
- .test:x86-64:linux:clang-10:cxx11-off:
- extends: .test:linux:base
- variables:
- EIGEN_CI_CXX_COMPILER: clang++-10
- EIGEN_CI_CC_COMPILER: clang-10
- needs: [ "build:x86-64:linux:clang-10:cxx11-off" ]
- tags:
- - eigen-runner
- - linux
- - x86-64
- test:x86-64:linux:clang-10:cxx11-off:official:
- extends: .test:x86-64:linux:clang-10:cxx11-off
- variables:
- EIGEN_CI_TEST_LABEL: "Official"
- test:x86-64:linux:clang-10:cxx11-off:unsupported:
- extends: .test:x86-64:linux:clang-10:cxx11-off
- variables:
- EIGEN_CI_TEST_LABEL: "Unsupported"
- .test:x86-64:linux:clang-10:cxx11-on:
- extends: .test:linux:base
- variables:
- EIGEN_CI_CXX_COMPILER: clang++-10
- EIGEN_CI_CC_COMPILER: clang-10
- needs: [ "build:x86-64:linux:clang-10:cxx11-on" ]
- tags:
- - eigen-runner
- - linux
- - x86-64
- test:x86-64:linux:clang-10:cxx11-on:official:
- extends: .test:x86-64:linux:clang-10:cxx11-on
- variables:
- EIGEN_CI_TEST_LABEL: "Official"
- test:x86-64:linux:clang-10:cxx11-on:unsupported:
- extends: .test:x86-64:linux:clang-10:cxx11-on
- variables:
- EIGEN_CI_TEST_LABEL: "Unsupported"
- ##### AArch64 ##################################################################
- # GCC-10
- .test:aarch64:linux:gcc-10:cxx11-off:
- extends: .test:linux:base
- variables:
- EIGEN_CI_CXX_COMPILER: g++-10
- EIGEN_CI_CC_COMPILER: gcc-10
- needs: [ "build:aarch64:linux:gcc-10:cxx11-off" ]
- tags:
- - eigen-runner
- - linux
- - aarch64
- test:aarch64:linux:gcc-10:cxx11-off:official:
- extends: .test:aarch64:linux:gcc-10:cxx11-off
- allow_failure: true
- variables:
- EIGEN_CI_TEST_LABEL: "Official"
- test:aarch64:linux:gcc-10:cxx11-off:unsupported:
- extends: .test:aarch64:linux:gcc-10:cxx11-off
- allow_failure: true
- variables:
- EIGEN_CI_TEST_LABEL: "Unsupported"
- .test:aarch64:linux:gcc-10:cxx11-on:
- extends: .test:linux:base
- variables:
- EIGEN_CI_CXX_COMPILER: g++-10
- EIGEN_CI_CC_COMPILER: gcc-10
- needs: [ "build:aarch64:linux:gcc-10:cxx11-on" ]
- tags:
- - eigen-runner
- - linux
- - aarch64
- test:aarch64:linux:gcc-10:cxx11-on:official:
- extends: .test:aarch64:linux:gcc-10:cxx11-on
- allow_failure: true
- variables:
- EIGEN_CI_TEST_LABEL: "Official"
- test:aarch64:linux:gcc-10:cxx11-on:unsupported:
- extends: .test:aarch64:linux:gcc-10:cxx11-on
- allow_failure: true
- variables:
- EIGEN_CI_TEST_LABEL: "Unsupported"
- # Clang 10
- .test:aarch64:linux:clang-10:cxx11-off:
- extends: .test:linux:base
- variables:
- EIGEN_CI_CXX_COMPILER: clang++-10
- EIGEN_CI_CC_COMPILER: clang-10
- needs: [ "build:aarch64:linux:clang-10:cxx11-off" ]
- tags:
- - eigen-runner
- - linux
- - aarch64
- test:aarch64:linux:clang-10:cxx11-off:official:
- extends: .test:aarch64:linux:clang-10:cxx11-off
- allow_failure: true
- variables:
- EIGEN_CI_TEST_LABEL: "Official"
- test:aarch64:linux:clang-10:cxx11-off:unsupported:
- extends: .test:aarch64:linux:clang-10:cxx11-off
- variables:
- EIGEN_CI_TEST_LABEL: "Unsupported"
- .test:aarch64:linux:clang-10:cxx11-on:
- extends: .test:linux:base
- variables:
- EIGEN_CI_CXX_COMPILER: clang++-10
- EIGEN_CI_CC_COMPILER: clang-10
- needs: [ "build:aarch64:linux:clang-10:cxx11-on" ]
- tags:
- - eigen-runner
- - linux
- - aarch64
- test:aarch64:linux:clang-10:cxx11-on:official:
- extends: .test:aarch64:linux:clang-10:cxx11-on
- allow_failure: true
- variables:
- EIGEN_CI_TEST_LABEL: "Official"
- test:aarch64:linux:clang-10:cxx11-on:unsupported:
- extends: .test:aarch64:linux:clang-10:cxx11-on
- variables:
- EIGEN_CI_TEST_LABEL: "Unsupported"
- ##### ppc64le ##################################################################
- # GCC-10
- .test:ppc64le:linux:gcc-10:cxx11-off:
- extends: .test:linux:base
- variables:
- EIGEN_CI_CXX_COMPILER: g++-10
- EIGEN_CI_CC_COMPILER: gcc-10
- needs: [ "build:ppc64le:linux:gcc-10:cxx11-off" ]
- allow_failure: true
- tags:
- - eigen-runner
- - linux
- - ppc64le
- test:ppc64le:linux:gcc-10:cxx11-off:official:
- extends: .test:ppc64le:linux:gcc-10:cxx11-off
- variables:
- EIGEN_CI_TEST_LABEL: "Official"
- test:ppc64le:linux:gcc-10:cxx11-off:unsupported:
- extends: .test:ppc64le:linux:gcc-10:cxx11-off
- variables:
- EIGEN_CI_TEST_LABEL: "Unsupported"
- .test:ppc64le:linux:gcc-10:cxx11-on:
- extends: .test:linux:base
- variables:
- EIGEN_CI_CXX_COMPILER: g++-10
- EIGEN_CI_CC_COMPILER: gcc-10
- needs: [ "build:ppc64le:linux:gcc-10:cxx11-on" ]
- allow_failure: true
- tags:
- - eigen-runner
- - linux
- - ppc64le
- test:ppc64le:linux:gcc-10:cxx11-on:official:
- extends: .test:ppc64le:linux:gcc-10:cxx11-on
- variables:
- EIGEN_CI_TEST_LABEL: "Official"
- test:ppc64le:linux:gcc-10:cxx11-on:unsupported:
- extends: .test:ppc64le:linux:gcc-10:cxx11-on
- variables:
- EIGEN_CI_TEST_LABEL: "Unsupported"
- # # Clang 10
- .test:ppc64le:linux:clang-10:cxx11-off:
- extends: .test:linux:base
- variables:
- EIGEN_CI_CXX_COMPILER: clang++-10
- EIGEN_CI_CC_COMPILER: clang-10
- needs: [ "build:ppc64le:linux:clang-10:cxx11-off" ]
- allow_failure: true
- tags:
- - eigen-runner
- - linux
- - ppc64le
- test:ppc64le:linux:clang-10:cxx11-off:official:
- extends: .test:ppc64le:linux:clang-10:cxx11-off
- variables:
- EIGEN_CI_TEST_LABEL: "Official"
- test:ppc64le:linux:clang-10:cxx11-off:unsupported:
- extends: .test:ppc64le:linux:clang-10:cxx11-off
- variables:
- EIGEN_CI_TEST_LABEL: "Unsupported"
- .test:ppc64le:linux:clang-10:cxx11-on:
- extends: .test:linux:base
- variables:
- EIGEN_CI_CXX_COMPILER: clang++-10
- EIGEN_CI_CC_COMPILER: clang-10
- needs: [ "build:ppc64le:linux:clang-10:cxx11-on" ]
- allow_failure: true
- tags:
- - eigen-runner
- - linux
- - ppc64le
- test:ppc64le:linux:clang-10:cxx11-on:official:
- extends: .test:ppc64le:linux:clang-10:cxx11-on
- variables:
- EIGEN_CI_TEST_LABEL: "Official"
- test:ppc64le:linux:clang-10:cxx11-on:unsupported:
- extends: .test:ppc64le:linux:clang-10:cxx11-on
- variables:
- EIGEN_CI_TEST_LABEL: "Unsupported"
|