.gitlab-ci.yml 571 B

1234567891011121314151617181920212223
  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. stages:
  10. - buildsmoketests
  11. - smoketests
  12. - build
  13. - test
  14. variables:
  15. BUILDDIR: builddir
  16. EIGEN_CI_CMAKE_GENEATOR: "Ninja"
  17. include:
  18. - "/ci/smoketests.gitlab-ci.yml"
  19. - "/ci/build.gitlab-ci.yml"
  20. - "/ci/test.gitlab-ci.yml"