Skip to content

Commit

Permalink
Remove stages in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
treiher committed Aug 18, 2023
1 parent d943755 commit fc41a92
Showing 1 changed file with 3 additions and 17 deletions.
20 changes: 3 additions & 17 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,6 @@ workflow:
when: never
- if: $CI_COMMIT_BRANCH

stages:
- initialization
- testing
- finalization

.ci_job:
rules:
- if: $SCHEDULE == null || $SCHEDULE == "nightly"
Expand All @@ -40,7 +35,6 @@ stages:

.initialization:
extends: .ci_job
stage: initialization

.setup_alire: &setup_alire
- curl -Ls https://github.com/alire-project/alire/releases/download/v1.2.2/alr-1.2.2-x86_64.AppImage -o /tmp/alr.AppImage
Expand Down Expand Up @@ -118,8 +112,7 @@ setup:

.testing:
extends: .ci_job
stage: testing
dependencies:
needs:
- setup

.setup_python: &setup_python
Expand All @@ -134,8 +127,6 @@ setup:
fi

changelog:
stage: testing
dependencies: []
rules:
- if: $CI_PIPELINE_SOURCE == 'merge_request_event'
script:
Expand All @@ -145,8 +136,6 @@ changelog:
fi

commit_messages:
stage: testing
dependencies: []
rules:
- if: $CI_PIPELINE_SOURCE == 'merge_request_event'
script:
Expand Down Expand Up @@ -278,8 +267,6 @@ gnat_community_compatibility:

verification_tests:
extends: .testing
dependencies:
- setup
services:
- image:recordflux
- cpu:8
Expand All @@ -299,8 +286,6 @@ verification_tests:

verification_python_tests:
extends: .testing
dependencies:
- setup
services:
- image:recordflux
- cpu:8
Expand Down Expand Up @@ -369,7 +354,8 @@ pdf_documentation:
##################

.scheduled_job:
stage: testing
needs:
- setup

gnat_wave_compatibility:
extends: .scheduled_job
Expand Down

0 comments on commit fc41a92

Please sign in to comment.