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/**'
|
- 'core/**'
|
||||||
- 'docker/**'
|
- 'docker/**'
|
||||||
- '!**.md'
|
- '!**.md'
|
||||||
|
- '!ci/jenkins/**'
|
||||||
pull_request:
|
pull_request:
|
||||||
# file paths to consider in the event. Optional; defaults to all.
|
# file paths to consider in the event. Optional; defaults to all.
|
||||||
paths:
|
paths:
|
||||||
|
@ -16,6 +17,7 @@ on:
|
||||||
- 'core/**'
|
- 'core/**'
|
||||||
- 'docker/**'
|
- 'docker/**'
|
||||||
- '!**.md'
|
- '!**.md'
|
||||||
|
- '!ci/jenkins/**'
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
ubuntu:
|
ubuntu:
|
||||||
|
|
|
@ -70,10 +70,10 @@ pipeline {
|
||||||
changeset 'core/**'
|
changeset 'core/**'
|
||||||
changeset 'docker/**'
|
changeset 'docker/**'
|
||||||
changeset 'test/**'
|
changeset 'test/**'
|
||||||
}
|
not {
|
||||||
not {
|
anyOf {
|
||||||
anyOf {
|
changeset '**/*.md'
|
||||||
changeset '**/*.md'
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -129,10 +129,10 @@ pipeline {
|
||||||
changeset 'core/**'
|
changeset 'core/**'
|
||||||
changeset 'docker/**'
|
changeset 'docker/**'
|
||||||
changeset 'test/**'
|
changeset 'test/**'
|
||||||
}
|
not {
|
||||||
not {
|
anyOf {
|
||||||
anyOf {
|
changeset '**/*.md'
|
||||||
changeset '**/*.md'
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -164,10 +164,10 @@ pipeline {
|
||||||
changeset 'core/**'
|
changeset 'core/**'
|
||||||
changeset 'docker/**'
|
changeset 'docker/**'
|
||||||
changeset 'test/**'
|
changeset 'test/**'
|
||||||
}
|
not {
|
||||||
not {
|
anyOf {
|
||||||
anyOf {
|
changeset '**/*.md'
|
||||||
changeset '**/*.md'
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue