From f6799137203192e69acfb34466dba77cb92fa953 Mon Sep 17 00:00:00 2001 From: Chao Xu Date: Fri, 12 Feb 2016 14:20:00 -0800 Subject: [PATCH] add a jenkins job config for linkchecker --- .../jenkins/job-configs/test-linkchecker.yaml | 33 +++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 hack/jenkins/job-configs/test-linkchecker.yaml diff --git a/hack/jenkins/job-configs/test-linkchecker.yaml b/hack/jenkins/job-configs/test-linkchecker.yaml new file mode 100644 index 00000000000..2d39bfc034b --- /dev/null +++ b/hack/jenkins/job-configs/test-linkchecker.yaml @@ -0,0 +1,33 @@ +- job: + name: 'kubernetes-test-linkchecker' + description: | + Grab the latest from GitHub, then run hack/verify-linkcheck.sh.
+ Test Owner: Build Cop + logrotate: + numToKeep: 200 + builders: + - shell: './hack/verify-linkcheck.sh' + publishers: + - claim-build + - gcs-uploader + - email-ext: + recipients: 'xuchao@google.com' + scm: + - git: + url: https://github.com/kubernetes/kubernetes + branches: + - 'master' + browser: githubweb + browser-url: https://github.com/kubernetes/kubernetes + wipe-workspace: false + skip-tag: true + triggers: + - timed: '@daily' + wrappers: + - ansicolor: + colormap: xterm + - timeout: + timeout: 60 + fail: true + - timestamps + - workspace-cleanup