.gitlab-ci.yml (571B)
1 # This file is part of Eigen, a lightweight C++ template library 2 # for linear algebra. 3 # 4 # Copyright (C) 2020 Arm Ltd. and Contributors 5 # 6 # This Source Code Form is subject to the terms of the Mozilla 7 # Public License v. 2.0. If a copy of the MPL was not distributed 8 # with this file, You can obtain one at http://mozilla.org/MPL/2.0/. 9 10 stages: 11 - buildsmoketests 12 - smoketests 13 - build 14 - test 15 16 variables: 17 BUILDDIR: builddir 18 EIGEN_CI_CMAKE_GENEATOR: "Ninja" 19 20 include: 21 - "/ci/smoketests.gitlab-ci.yml" 22 - "/ci/build.gitlab-ci.yml" 23 - "/ci/test.gitlab-ci.yml"