Skip to content
This repository was archived by the owner on Nov 15, 2023. It is now read-only.
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
change (CI): debug regex
  • Loading branch information
TriplEight committed Sep 28, 2020
commit 75453dfe9af6b474549328ebd02d0dfc06712dad
8 changes: 5 additions & 3 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,9 @@
# stage: test # One of the stages listed below this job (required)
# image: paritytech/tools:latest # Any docker image (required)
# allow_failure: true # Allow the pipeline to continue if this job fails (default: false)
# dependencies:
# - build-rust-doc # Any jobs that are required to run before this job (optional)
# needs:
# - job: test-linux # Any jobs that are required to run before this job (optional)
# - build-rust-doc
# variables:
# MY_ENVIRONMENT_VARIABLE: "some useful value" # Environment variables passed to the job (optional)
# script:
Expand Down Expand Up @@ -85,7 +86,8 @@ workflow:
- if: '$CI_PIPELINE_SOURCE == "web"'
- if: '$CI_PIPELINE_SOURCE == "schedule"'
- if: '$CI_COMMIT_REF_NAME == "master"'
- if: '$CI_COMMIT_REF_NAME == "/^[0-9]+$/"' # PRs
# - if: '$CI_COMMIT_REF_NAME == "/^[0-9]+$/"' # PRs
- if: '$CI_COMMIT_REF_NAME == "7229"' # PRs
- if: '$CI_COMMIT_REF_NAME =~ "/^v[0-9]+\.[0-9]+.*$/"' # i.e. v1.0, v2.1rc1

.build-rules: &build-rules
Expand Down