From adc861cabd2ea02942a04d01d8588fee400903fc Mon Sep 17 00:00:00 2001 From: David Tellenbach Date: Fri, 11 Sep 2020 18:11:49 +0000 Subject: New CI infrastructure, including AArch64 runners --- ci/README.md | 56 +++++++++ ci/build-tests.gitlab-ci.yml | 131 -------------------- ci/build.gitlab-ci.yml | 163 ++++++++++++++++++++++++ ci/run-tests.gitlab-ci.yml | 128 ------------------- ci/test.gitlab-ci.yml | 289 +++++++++++++++++++++++++++++++++++++++++++ 5 files changed, 508 insertions(+), 259 deletions(-) create mode 100644 ci/README.md delete mode 100644 ci/build-tests.gitlab-ci.yml create mode 100644 ci/build.gitlab-ci.yml delete mode 100644 ci/run-tests.gitlab-ci.yml create mode 100644 ci/test.gitlab-ci.yml (limited to 'ci') diff --git a/ci/README.md b/ci/README.md new file mode 100644 index 000000000..8395b1601 --- /dev/null +++ b/ci/README.md @@ -0,0 +1,56 @@ +## Eigen CI infrastructure + +Eigen's CI infrastructure uses two stages: A `build` stage to build the unit-test +suite and a `test` stage to run the unit-tests. + +### Build Stage + +The build stage consists of the following jobs: + +| Job Name | Arch | OS | Compiler | C++11 | +|------------------------------------------|-----------|----------------|------------|---------| +| `build:x86-64:linux:gcc-4.8:cxx11-off` | `x86-64` | `Ubuntu 18.04` | `GCC-4.8` | `Off` | +| `build:x86-64:linux:gcc-4.8:cxx11-on` | `x86-64` | `Ubuntu 18.04` | `GCC-4.8` | `On` | +| `build:x86-64:linux:gcc-9:cxx11-off` | `x86-64` | `Ubuntu 18.04` | `GCC-9` | `Off` | +| `build:x86-64:linux:gcc-9:cxx11-on` | `x86-64` | `Ubuntu 18.04` | `GCC-9` | `On` | +| `build:x86-64:linux:gcc-10:cxx11-off` | `x86-64` | `Ubuntu 18.04` | `GCC-10` | `Off` | +| `build:x86-64:linux:gcc-10:cxx11-on` | `x86-64` | `Ubuntu 18.04` | `GCC-10` | `On` | +| `build:x86-64:linux:clang-10:cxx11-off` | `x86-64` | `Ubuntu 18.04` | `Clang-10` | `Off` | +| `build:x86-64:linux:clang-10:cxx11-on` | `x86-64` | `Ubuntu 18.04` | `Clang-10` | `On` | +| `build:aarch64:linux:gcc-10:cxx11-off` | `AArch64` | `Ubuntu 18.04` | `GCC-10` | `Off` | +| `build:aarch64:linux:gcc-10:cxx11-on` | `AArch64` | `Ubuntu 18.04` | `GCC-10` | `On` | +| `build:aarch64:linux:clang-10:cxx11-off` | `AArch64` | `Ubuntu 18.04` | `Clang-10` | `Off` | +| `build:aarch64:linux:clang-10:cxx11-on` | `AArch64` | `Ubuntu 18.04` | `Clang-10` | `On` | + +### Test stage + +In principle every build-job has a corresponding test-job, however testing supported and unsupported modules is divided into separate jobs. The test jobs in detail: + +### Job dependecies + +| Job Name | Arch | OS | Compiler | C++11 | Module +|-----------------------------------------------------|-----------|----------------|------------|---------|-------- +| `test:x86-64:linux:gcc-4.8:cxx11-off:official` | `x86-64` | `Ubuntu 18.04` | `GCC-4.8` | `Off` | `Official` +| `test:x86-64:linux:gcc-4.8:cxx11-off:unsupported` | `x86-64` | `Ubuntu 18.04` | `GCC-4.8` | `Off` | `Unsupported` +| `test:x86-64:linux:gcc-4.8:cxx11-on:official` | `x86-64` | `Ubuntu 18.04` | `GCC-4.8` | `On` | `Official` +| `test:x86-64:linux:gcc-4.8:cxx11-on:unsupported` | `x86-64` | `Ubuntu 18.04` | `GCC-4.8` | `On` | `Unsupported` +| `test:x86-64:linux:gcc-9:cxx11-off:official` | `x86-64` | `Ubuntu 18.04` | `GCC-9` | `Off` | `Official` +| `test:x86-64:linux:gcc-9:cxx11-off:unsupported` | `x86-64` | `Ubuntu 18.04` | `GCC-9` | `Off` | `Unsupported` +| `test:x86-64:linux:gcc-9:cxx11-on:official` | `x86-64` | `Ubuntu 18.04` | `GCC-9` | `On` | `Official` +| `test:x86-64:linux:gcc-9:cxx11-on:unsupported` | `x86-64` | `Ubuntu 18.04` | `GCC-9` | `On` | `Unsupported` +| `test:x86-64:linux:gcc-10:cxx11-off:official` | `x86-64` | `Ubuntu 18.04` | `GCC-10` | `Off` | `Official` +| `test:x86-64:linux:gcc-10:cxx11-off:unsupported` | `x86-64` | `Ubuntu 18.04` | `GCC-10` | `Off` | `Unsupported` +| `test:x86-64:linux:gcc-10:cxx11-on:official` | `x86-64` | `Ubuntu 18.04` | `GCC-10` | `On` | `Official` +| `test:x86-64:linux:gcc-10:cxx11-on:unsupported` | `x86-64` | `Ubuntu 18.04` | `GCC-10` | `On` | `Unsupported` +| `test:x86-64:linux:clang-10:cxx11-off:official` | `x86-64` | `Ubuntu 18.04` | `Clang-10` | `Off` | `Official` +| `test:x86-64:linux:clang-10:cxx11-off:unsupported` | `x86-64` | `Ubuntu 18.04` | `Clang-10` | `Off` | `Unsupported` +| `test:x86-64:linux:clang-10:cxx11-on:official` | `x86-64` | `Ubuntu 18.04` | `Clang-10` | `On` | `Official` +| `test:x86-64:linux:clang-10:cxx11-on:unsupported` | `x86-64` | `Ubuntu 18.04` | `Clang-10` | `On` | `Unsupported` +| `test:aarch64:linux:gcc-10:cxx11-off:official` | `AArch64` | `Ubuntu 18.04` | `GCC-10` | `Off` | `Official` +| `test:aarch64:linux:gcc-10:cxx11-off:unsupported` | `AArch64` | `Ubuntu 18.04` | `GCC-10` | `Off` | `Unsupported` +| `test:aarch64:linux:gcc-10:cxx11-on:official` | `AArch64` | `Ubuntu 18.04` | `GCC-10` | `On` | `Official` +| `test:aarch64:linux:gcc-10:cxx11-on:unsupported` | `AArch64` | `Ubuntu 18.04` | `GCC-10` | `On` | `Unsupported` +| `test:aarch64:linux:clang-10:cxx11-off:official` | `AArch64` | `Ubuntu 18.04` | `Clang-10` | `Off` | `Official` +| `test:aarch64:linux:clang-10:cxx11-off:unsupported` | `AArch64` | `Ubuntu 18.04` | `Clang-10` | `Off` | `Unsupported` +| `test:aarch64:linux:clang-10:cxx11-on:official` | `AArch64` | `Ubuntu 18.04` | `Clang-10` | `On` | `Official` +| `test:aarch64:linux:clang-10:cxx11-on:unsupported` | `AArch64` | `Ubuntu 18.04` | `Clang-10` | `On` | `Unsupported` diff --git a/ci/build-tests.gitlab-ci.yml b/ci/build-tests.gitlab-ci.yml deleted file mode 100644 index cf049d9b6..000000000 --- a/ci/build-tests.gitlab-ci.yml +++ /dev/null @@ -1,131 +0,0 @@ -.build-tests-base: - stage: build - image: ubuntu:18.04 - 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 - script: - - mkdir -p ${BUILDDIR} && cd ${BUILDDIR} - - echo "CXX=${EIGEN_CI_CXX_COMPILER} CC=${EIGEN_CI_CC_COMPILER} cmake -G ${EIGEN_CI_CMAKE_GENEATOR} -DEIGEN_SPLIT_TESTSUITE=${EIGEN_CI_TESTSUITE_SIZE} -DEIGEN_TEST_CXX11=${EIGEN_TEST_CXX11} ${EIGEN_CI_ADDITIONAL_ARGS} .." - - CXX=${EIGEN_CI_CXX_COMPILER} CC=${EIGEN_CI_CC_COMPILER} cmake -G ${EIGEN_CI_CMAKE_GENEATOR} -DEIGEN_SPLIT_TESTSUITE=${EIGEN_CI_TESTSUITE_SIZE} -DEIGEN_TEST_CXX11=${EIGEN_TEST_CXX11} ${EIGEN_CI_ADDITIONAL_ARGS} .. - - echo "cmake --build . --target buildtestspart${EIGEN_CI_TESTSUITE_PART}" - - cmake --build . --target buildtestspart${EIGEN_CI_TESTSUITE_PART} - artifacts: - name: "$CI_JOB_NAME-$CI_COMMIT_REF_NAME" - paths: - - ${BUILDDIR}/ - expire_in: 5 days - -# Base for all build jobs building the whole testsuite in one job. Note that -# this cannot be run on GitLab's shared runners due to their timeout. -.build-tests-single-base: - extends: .build-tests-base - script: - - mkdir -p ${BUILDDIR} && cd ${BUILDDIR} - - echo "CXX=${EIGEN_CI_CXX_COMPILER} CC=${EIGEN_CI_CC_COMPILER} cmake -G ${EIGEN_CI_CMAKE_GENEATOR} -DEIGEN_TEST_CXX11=${EIGEN_TEST_CXX11} ${EIGEN_CI_CXX_FLAGS} ${EIGEN_CI_ADDITIONAL_ARGS} .." - - CXX=${EIGEN_CI_CXX_COMPILER} CC=${EIGEN_CI_CC_COMPILER} cmake -G ${EIGEN_CI_CMAKE_GENEATOR} -DEIGEN_TEST_CXX11=${EIGEN_TEST_CXX11} ${EIGEN_CI_ADDITIONAL_ARGS} .. - - echo "cmake --build . --target buildtests" - - cmake --build . --target buildtests - tags: - - eigen-runner - - x86 - - linux - only: - - schedules - -# Base for all build jobs using a splitted testsuite such that the job can be -# run on GitLab's own shared runners -.build-tests-split-base: - extends: .build-tests-base - script: - - mkdir -p ${BUILDDIR} && cd ${BUILDDIR} - - echo "CXX=${EIGEN_CI_CXX_COMPILER} CC=${EIGEN_CI_CC_COMPILER} cmake -G ${EIGEN_CI_CMAKE_GENEATOR} -DEIGEN_SPLIT_TESTSUITE=${EIGEN_CI_TESTSUITE_SIZE} -DEIGEN_TEST_CXX11=${EIGEN_TEST_CXX11} ${EIGEN_CI_CXX_FLAGS} -DEIGEN_TEST_AVX=On -DEIGEN_TEST_AVX2=On .." - - CXX=${EIGEN_CI_CXX_COMPILER} CC=${EIGEN_CI_CC_COMPILER} cmake -G ${EIGEN_CI_CMAKE_GENEATOR} -DEIGEN_SPLIT_TESTSUITE=${EIGEN_CI_TESTSUITE_SIZE} -DEIGEN_TEST_CXX11=${EIGEN_TEST_CXX11} -DEIGEN_TEST_AVX=On -DEIGEN_TEST_AVX2=On .. - - echo "cmake --build . --target buildtestspart${EIGEN_CI_TESTSUITE_PART}" - - cmake --build . --target buildtestspart${EIGEN_CI_TESTSUITE_PART} - only: - - merge_requests - -########################## Nightly running jobs ################################ - -# GCC 4.8 -# This is the oldest GCC version we support -build-tests-g++-4.8-cxx11-on: - extends: .build-tests-single-base - variables: - EIGEN_CI_CXX_COMPILER: "g++-4.8" - EIGEN_CI_CC_COMPILER: "gcc-4.8" - EIGEN_TEST_CXX11: "on" - -build-tests-g++-4.8-cxx11-off: - extends: .build-tests-single-base - variables: - EIGEN_CI_CXX_COMPILER: "g++-4.8" - EIGEN_CI_CC_COMPILER: "gcc-4.8" - EIGEN_TEST_CXX11: "off" - -# Clang 10 -build-tests-clang++-10-cxx11-on: - extends: .build-tests-single-base - variables: - EIGEN_CI_CXX_COMPILER: "clang++-10" - EIGEN_CI_CC_COMPILER: "clang-10" - EIGEN_TEST_CXX11: "on" - EIGEN_CI_ADDITIONAL_ARGS: "-DEIGEN_TEST_AVX=On -DEIGEN_TEST_AVX2=On" - -build-tests-clang++-10-cxx11-off: - extends: .build-tests-single-base - variables: - EIGEN_CI_CXX_COMPILER: "clang++-10" - EIGEN_CI_CC_COMPILER: "clang-10" - EIGEN_TEST_CXX11: "off" - EIGEN_CI_ADDITIONAL_ARGS: "-DEIGEN_TEST_AVX=On -DEIGEN_TEST_AVX2=On" - -# GCC 10 -build-tests-g++-10-cxx11-off: - extends: .build-tests-single-base - variables: - EIGEN_CI_CXX_COMPILER: "g++-10" - EIGEN_CI_CC_COMPILER: "gcc-10" - EIGEN_TEST_CXX11: "off" - EIGEN_CI_ADDITIONAL_ARGS: "-DEIGEN_TEST_AVX=On -DEIGEN_TEST_AVX2=On" - -build-tests-g++-10-cxx11-on: - extends: .build-tests-single-base - variables: - EIGEN_CI_CXX_COMPILER: "g++-10" - EIGEN_CI_CC_COMPILER: "gcc-10" - EIGEN_TEST_CXX11: "on" - EIGEN_CI_ADDITIONAL_ARGS: "-DEIGEN_TEST_AVX=On -DEIGEN_TEST_AVX2=On" - -########################### Merge request jobs ################################# - -# GCC 10 -build-tests-g++-9-cxx11-on-mr: - only: - - merge_requests - extends: .build-tests-split-base - variables: - EIGEN_CI_CXX_COMPILER: "g++-9" - EIGEN_CI_CC_COMPILER: "gcc-9" - EIGEN_CI_ADDITIONAL_ARGS: "-DEIGEN_TEST_AVX=On -DEIGEN_TEST_AVX2=On" - parallel: - matrix: - - EIGEN_CI_TESTSUITE_PART: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14] - EIGEN_TEST_CXX11: "on" - -build-tests-g++-9-cxx11-off-mr: - only: - - merge_requests - extends: .build-tests-split-base - variables: - EIGEN_CI_CXX_COMPILER: "g++-9" - EIGEN_CI_CC_COMPILER: "gcc-9" - EIGEN_CI_ADDITIONAL_ARGS: "-DEIGEN_TEST_AVX=On -DEIGEN_TEST_AVX2=On" - parallel: - matrix: - - EIGEN_CI_TESTSUITE_PART: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14] - EIGEN_TEST_CXX11: "off" diff --git a/ci/build.gitlab-ci.yml b/ci/build.gitlab-ci.yml new file mode 100644 index 000000000..085b21125 --- /dev/null +++ b/ci/build.gitlab-ci.yml @@ -0,0 +1,163 @@ +.build:linux:base: + stage: build + image: ubuntu:18.04 + 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 + script: + - mkdir -p ${BUILDDIR} && cd ${BUILDDIR} + - CXX=${EIGEN_CI_CXX_COMPILER} CC=${EIGEN_CI_CC_COMPILER} cmake -G + ${EIGEN_CI_CMAKE_GENEATOR} -DEIGEN_TEST_CXX11=${EIGEN_TEST_CXX11} + ${EIGEN_CI_ADDITIONAL_ARGS} .. + - cmake --build . --target buildtests + artifacts: + name: "$CI_JOB_NAME-$CI_COMMIT_REF_NAME" + paths: + - ${BUILDDIR}/ + expire_in: 5 days + only: + - schedules + +######## x86-64 ################################################################ +# GCC-4.8 (the oldest compiler we support) +build:x86-64:linux:gcc-4.8:cxx11-off: + extends: .build:linux:base + variables: + EIGEN_CI_CXX_COMPILER: "g++-4.8" + EIGEN_CI_CC_COMPILER: "gcc-4.8" + EIGEN_TEST_CXX11: "off" + tags: + - eigen-runner + - linux + - x86-64 + +build:x86-64:linux:gcc-4.8:cxx11-on: + extends: .build:linux:base + variables: + EIGEN_CI_CXX_COMPILER: "g++-4.8" + EIGEN_CI_CC_COMPILER: "gcc-4.8" + EIGEN_TEST_CXX11: "on" + tags: + - eigen-runner + - linux + - x86-64 + +# GCC-9 +build:x86-64:linux:gcc-9:cxx11-off: + extends: .build:linux:base + variables: + EIGEN_CI_CXX_COMPILER: "g++-9" + EIGEN_CI_CC_COMPILER: "gcc-9" + EIGEN_TEST_CXX11: "off" + tags: + - eigen-runner + - linux + - x86-64 + +build:x86-64:linux:gcc-9:cxx11-on: + extends: .build:linux:base + variables: + EIGEN_CI_CXX_COMPILER: "g++-9" + EIGEN_CI_CC_COMPILER: "gcc-9" + EIGEN_TEST_CXX11: "on" + tags: + - eigen-runner + - linux + - x86-64 + +# GCC-10 +build:x86-64:linux:gcc-10:cxx11-off: + extends: .build:linux:base + variables: + EIGEN_CI_CXX_COMPILER: "g++-10" + EIGEN_CI_CC_COMPILER: "gcc-10" + EIGEN_TEST_CXX11: "off" + tags: + - eigen-runner + - linux + - x86-64 + +build:x86-64:linux:gcc-10:cxx11-on: + extends: .build:linux:base + variables: + EIGEN_CI_CXX_COMPILER: "g++-10" + EIGEN_CI_CC_COMPILER: "gcc-10" + EIGEN_TEST_CXX11: "on" + tags: + - eigen-runner + - linux + - x86-64 + +# Clang-10 +build:x86-64:linux:clang-10:cxx11-off: + extends: .build:linux:base + variables: + EIGEN_CI_CXX_COMPILER: "clang++-10" + EIGEN_CI_CC_COMPILER: "clang-10" + EIGEN_TEST_CXX11: "off" + tags: + - eigen-runner + - linux + - x86-64 + +build:x86-64:linux:clang-10:cxx11-on: + extends: .build:linux:base + variables: + EIGEN_CI_CXX_COMPILER: "clang++-10" + EIGEN_CI_CC_COMPILER: "clang-10" + EIGEN_TEST_CXX11: "on" + tags: + - eigen-runner + - linux + - x86-64 + +######## AArch64 ############################################################### +# GCC-10 +build:aarch64:linux:gcc-10:cxx11-off: + extends: .build:linux:base + variables: + EIGEN_CI_CXX_COMPILER: "g++-10" + EIGEN_CI_CC_COMPILER: "gcc-10" + EIGEN_TEST_CXX11: "off" + tags: + - eigen-runner + - linux + - aarch64 + +build:aarch64:linux:gcc-10:cxx11-on: + extends: .build:linux:base + variables: + EIGEN_CI_CXX_COMPILER: "g++-10" + EIGEN_CI_CC_COMPILER: "gcc-10" + EIGEN_TEST_CXX11: "on" + tags: + - eigen-runner + - linux + - aarch64 + +# Clang-10 +build:aarch64:linux:clang-10:cxx11-off: + extends: .build:linux:base + variables: + EIGEN_CI_CXX_COMPILER: "clang++-10" + EIGEN_CI_CC_COMPILER: "clang-10" + EIGEN_TEST_CXX11: "off" + tags: + - eigen-runner + - linux + - aarch64 + +build:aarch64:linux:clang-10:cxx11-on: + extends: .build:linux:base + variables: + EIGEN_CI_CXX_COMPILER: "clang++-10" + EIGEN_CI_CC_COMPILER: "clang-10" + EIGEN_TEST_CXX11: "on" + tags: + - eigen-runner + - linux + - aarch64 diff --git a/ci/run-tests.gitlab-ci.yml b/ci/run-tests.gitlab-ci.yml deleted file mode 100644 index c8ad66e7b..000000000 --- a/ci/run-tests.gitlab-ci.yml +++ /dev/null @@ -1,128 +0,0 @@ -.run_tests: - allow_failure: true - stage: test - image: ubuntu:18.04 - 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: - - echo "cd ${BUILDDIR} && ctest --output-on-failure --no-compress-output --build-no-clean -T test" - - cd ${BUILDDIR} && ctest --output-on-failure --no-compress-output --build-no-clean -T test - 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 - -########################## Nightly running jobs ################################ -# GCC 4.8 -run-tests-g++-4.8-cxx11-on: - only: - - schedules - extends: .run_tests - variables: - EIGEN_CI_CXX_COMPILER: g++-4.8 - EIGEN_CI_CC_COMPILER: gcc-4.8 - needs: [ "build-tests-g++-4.8-cxx11-on" ] - tags: - - eigen-runner - - x86 - - linux - -run-tests-g++-4.8-cxx11-off: - only: - - schedules - extends: .run_tests - variables: - EIGEN_CI_CXX_COMPILER: g++-4.8 - EIGEN_CI_CC_COMPILER: gcc-4.8 - needs: [ "build-tests-g++-4.8-cxx11-off" ] - tags: - - eigen-runner - - x86 - - linux - -# Clang 10 -run-tests-clang++-10-cxx11-on: - only: - - schedules - extends: .run_tests - variables: - EIGEN_CI_CXX_COMPILER: clang++-10 - EIGEN_CI_CC_COMPILER: clang-10 - needs: [ "build-tests-clang++-10-cxx11-on" ] - tags: - - eigen-runner - - x86 - - linux - -run-tests-clang++-10-cxx11-off: - only: - - schedules - extends: .run_tests - variables: - EIGEN_CI_CXX_COMPILER: clang++-10 - EIGEN_CI_CC_COMPILER: clang-10 - needs: [ "build-tests-clang++-10-cxx11-off" ] - tags: - - eigen-runner - - x86 - - linux - -# GCC 10 -run-tests-g++-10-cxx11-on: - only: - - schedules - extends: .run_tests - variables: - EIGEN_CI_CXX_COMPILER: g++-10 - EIGEN_CI_CC_COMPILER: gcc-10 - needs: [ "build-tests-g++-10-cxx11-on" ] - tags: - - eigen-runner - - x86 - - linux - -run-tests-g++-10-cxx11-off: - only: - - schedules - extends: .run_tests - variables: - EIGEN_CI_CXX_COMPILER: g++-10 - EIGEN_CI_CC_COMPILER: gcc-10 - needs: [ "build-tests-g++-10-cxx11-off" ] - tags: - - eigen-runner - - x86 - - linux - -########################### Merge request jobs ################################# - -# GCC 10 -run-tests-g++-9-cxx11-on-mr: - only: - - merge_requests - extends: .run_tests - variables: - EIGEN_CI_CXX_COMPILER: g++-9 - EIGEN_CI_CC_COMPILER: gcc-9 - dependencies: - - build-tests-g++-9-cxx11-on-mr - -run-tests-g++-9-cxx11-off-mr: - only: - - merge_requests - extends: .run_tests - variables: - EIGEN_CI_CXX_COMPILER: g++-9 - EIGEN_CI_CC_COMPILER: gcc-9 - dependencies: - - build-tests-g++-9-cxx11-off-mr diff --git a/ci/test.gitlab-ci.yml b/ci/test.gitlab-ci.yml new file mode 100644 index 000000000..106c6d990 --- /dev/null +++ b/ci/test.gitlab-ci.yml @@ -0,0 +1,289 @@ +.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 + allow_failure: true + 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 + 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 + variables: + EIGEN_CI_TEST_LABEL: "Official" + +test:x86-64:linux:gcc-10:cxx11-on:unsupported: + extends: .test:x86-64:linux:gcc-10:cxx11-on + 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 + variables: + EIGEN_CI_TEST_LABEL: "Official" + +test:aarch64:linux:gcc-10:cxx11-off:unsupported: + extends: .test:aarch64:linux:gcc-10:cxx11-off + 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 + variables: + EIGEN_CI_TEST_LABEL: "Official" + +test:aarch64:linux:gcc-10:cxx11-on:unsupported: + extends: .test:aarch64:linux:gcc-10:cxx11-on + 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 + 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 + 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" -- cgit v1.2.3