2020-06-27 00:03:35 +00:00
|
|
|
# This file is part of Eigen, a lightweight C++ template library
|
|
|
|
# for linear algebra.
|
|
|
|
#
|
2024-01-19 17:55:09 +00:00
|
|
|
# Copyright (C) 2023, The Eigen Authors
|
2020-06-27 00:03:35 +00:00
|
|
|
#
|
|
|
|
# This Source Code Form is subject to the terms of the Mozilla
|
|
|
|
# Public License v. 2.0. If a copy of the MPL was not distributed
|
|
|
|
# with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
|
|
|
|
stages:
|
2023-12-13 21:08:07 +00:00
|
|
|
- checkformat
|
2020-06-27 00:03:35 +00:00
|
|
|
- build
|
|
|
|
- test
|
2024-12-05 15:28:18 +00:00
|
|
|
- deploy
|
2020-06-27 00:03:35 +00:00
|
|
|
|
|
|
|
variables:
|
2024-01-19 17:55:09 +00:00
|
|
|
# CMake build directory.
|
|
|
|
EIGEN_CI_BUILDDIR: .build
|
|
|
|
# Specify the CMake build target.
|
|
|
|
EIGEN_CI_BUILD_TARGET: ""
|
|
|
|
# If a test regex is specified, that will be selected.
|
|
|
|
# Otherwise, we will try a label if specified.
|
2025-02-06 21:32:38 +00:00
|
|
|
EIGEN_CI_CTEST_REGEX: ""
|
|
|
|
EIGEN_CI_CTEST_LABEL: ""
|
|
|
|
EIGEN_CI_CTEST_ARGS: ""
|
2020-06-27 00:03:35 +00:00
|
|
|
|
2020-08-19 18:27:45 +00:00
|
|
|
include:
|
2023-12-13 21:08:07 +00:00
|
|
|
- "/ci/checkformat.gitlab-ci.yml"
|
2024-01-19 17:55:09 +00:00
|
|
|
- "/ci/common.gitlab-ci.yml"
|
|
|
|
- "/ci/build.linux.gitlab-ci.yml"
|
|
|
|
- "/ci/build.windows.gitlab-ci.yml"
|
|
|
|
- "/ci/test.linux.gitlab-ci.yml"
|
|
|
|
- "/ci/test.windows.gitlab-ci.yml"
|
2024-12-05 15:28:18 +00:00
|
|
|
- "/ci/deploy.gitlab-ci.yml"
|