Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
.gitlab-ci.yml 1.04 KiB
###############################################################################
#                 Aidge Continuous Integration and Deployment                 #
#                                                                             #
###############################################################################

stages:
  - static_analysis
  - build
  - test
  - coverage
  - release
  - deploy

include:
  - project: 'eclipse/aidge/gitlab_shared_files'
    ref: 'main'
    file: 
      # choose which jobs to run by including the corresponding files.
      - '.gitlab/ci/ubuntu_cpp.gitlab-ci.yml'

      - '.gitlab/ci/ubuntu_python.gitlab-ci.yml'
      - '.gitlab/ci/release/cibuildwheel_ubuntu.gitlab-ci.yml'   

      - '.gitlab/ci/windows_cpp.gitlab-ci.yml'

      - '.gitlab/ci/windows_python.gitlab-ci.yml'   
      - '.gitlab/ci/release/cibuildwheel_windows.gitlab-ci.yml'

# Required bc of test_export that cannot run in parallel in test and in coverage
coverage:ubuntu_python:
  needs: 
    - build:ubuntu_python
    - test:ubuntu_python