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 CI
pull/1110/head^2
quicksilver 2020-01-20 22:00:42 +08:00 committed by GitHub
parent a347ac8b62
commit 2f21cfc5dd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 14 additions and 12 deletions

View File

@ -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:

View File

@ -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' }
} }
} }
} }