mirror of https://github.com/milvus-io/milvus.git
Fix Filtering for specific paths in Jenkins CI bug (#1109)
* run hadolint with reviewdog * add LINCENSE in Dockerfile * run hadolint with reviewdog * Reporter of reviewdog command is "github-pr-check" * format Dockerfile * ignore DL3007 in hadolint * clean up old docker images * Add GPU sharing solution on native Kubernetes * nightly test mailer * Filtering for specific paths in Jenkins CI * Filtering for specific paths in Jenkins CI * Filtering for specific paths in Jenkins CI * Filtering for specific paths in Jenkins CI * Filtering for specific paths in Jenkins CI * Filtering for specific paths in Jenkins CI * Test filtering for specific paths in Jenkins CI * Test filtering for specific paths in Jenkins CI * Test filtering for specific paths in Jenkins CI * Test filtering for specific paths in Jenkins CI * Test filtering for specific paths in Jenkins CI * Test filtering for specific paths in Jenkins CI * Test filtering for specific paths in Jenkins CI * Test filtering for specific paths in Jenkins CI * Test filtering for specific paths in Jenkins CI * Filtering for specific paths in Jenkins CI * Filtering for specific paths in Jenkins CIpull/1110/head^2
parent
a347ac8b62
commit
2f21cfc5dd
|
@ -9,6 +9,7 @@ on:
|
|||
- 'core/**'
|
||||
- 'docker/**'
|
||||
- '!**.md'
|
||||
- '!ci/jenkins/**'
|
||||
pull_request:
|
||||
# file paths to consider in the event. Optional; defaults to all.
|
||||
paths:
|
||||
|
@ -16,6 +17,7 @@ on:
|
|||
- 'core/**'
|
||||
- 'docker/**'
|
||||
- '!**.md'
|
||||
- '!ci/jenkins/**'
|
||||
|
||||
jobs:
|
||||
ubuntu:
|
||||
|
|
|
@ -70,10 +70,10 @@ pipeline {
|
|||
changeset 'core/**'
|
||||
changeset 'docker/**'
|
||||
changeset 'test/**'
|
||||
}
|
||||
not {
|
||||
anyOf {
|
||||
changeset '**/*.md'
|
||||
not {
|
||||
anyOf {
|
||||
changeset '**/*.md'
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -129,10 +129,10 @@ pipeline {
|
|||
changeset 'core/**'
|
||||
changeset 'docker/**'
|
||||
changeset 'test/**'
|
||||
}
|
||||
not {
|
||||
anyOf {
|
||||
changeset '**/*.md'
|
||||
not {
|
||||
anyOf {
|
||||
changeset '**/*.md'
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -164,10 +164,10 @@ pipeline {
|
|||
changeset 'core/**'
|
||||
changeset 'docker/**'
|
||||
changeset 'test/**'
|
||||
}
|
||||
not {
|
||||
anyOf {
|
||||
changeset '**/*.md'
|
||||
not {
|
||||
anyOf {
|
||||
changeset '**/*.md'
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue