summaryrefslogtreecommitdiff
path: root/lib/gitlab/ci/templates/Verify/FailFast.gitlab-ci.yml
blob: 584e6966180fded51e914dd57a5a298340679e56 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
rspec-rails-modified-path-specs:
  image: ruby:2.6
  stage: .pre
  rules:
    - if: $CI_MERGE_REQUEST_EVENT_TYPE == "merged_result" || $CI_MERGE_REQUEST_EVENT_TYPE == "merge_train"
      changes: ["**/*.rb"]
  script:
    - gem install test_file_finder
    - spec_files=$(tff $(git diff --name-only "$CI_MERGE_REQUEST_TARGET_BRANCH_SHA..$CI_MERGE_REQUEST_SOURCE_BRANCH_SHA"))
    - |
        if [ -n "$spec_files" ]
        then
          bundle install
          bundle exec rspec -- $spec_files
        else
          echo "No relevant spec files found by tff"
          exit 0
        fi