diff --git a/index.html b/index.html index 9f21646ada9ea57a9fd70d840e7ed3af12780ed5..6431edf3863371cd3cc68800b41ba100f74b16e2 100644 --- a/index.html +++ b/index.html @@ -1846,32 +1846,32 @@ RU5ErkJggg==" /> - + + + + - - - - - + + - - + + - - + + diff --git a/index.json b/index.json index c86455fb12e03b877268c1aa502462a40ccb0449..e2213aaed01f4c21bec4db0720d054724bfbc588 100644 --- a/index.json +++ b/index.json @@ -25,6 +25,19 @@ "original": "", "poster": "" }, + { + "uri": "https://jenkins-zh.cn/wechat/articles/2020/08/2020-08-07-github-checks-api-plugin-project-coding-phase-1/", + "title": "GSoC: GitHub Checks API 项目第一阶段总结", + "type": "wechat", + "date": "2020-08-07 00:00:00 +0000 UTC", + "tags": ["github", "api", "plugins", "developer", "gsoc", "gsoc2020"], + "description": "GitHub Checks API 插件项目 - 编码阶段 1", + "content": " 这篇博客将介绍 GSoC 项目 GitHub Checks API Plugin 在一阶段的相关进展。\n简单来说,GitHub Checks API 就是一套可高度定制化接受 CI 报告的接口。 CI 工具可以通过该接口反馈信息给特定的 Pull Request,随后,用户便可以直接在 GitHub 的 UI 界面上直观的浏览 CI 报告。\n更激动人心的是,它可以针对指定的代码行进行注释,这类似于开发者平时在代码审查时留下的评论。\n同时,在 Jenkins 这边,Warnings Next Generation Plugin 能通过源代码视图实现类似的功能。\n因此,通过使用 GitHub Checks API 将这些信息直接反馈给 GitHub 能使 Jenkins 对 GitHub 用户更加友好。\n阶段一实现的相关特性 在过去的一个月里,我们团队的工作主要集中在 General Checks API 和 GitHub Checks API 的实现上。\nGeneral Checks API 尽管 General Checks API 是基于 GitHub Checks API 的语义实现的,我们仍然希望能提供这样的泛化接口为其他平台的相关概念做好准备,例如:GitLab 上的 Commit Status API。 在今后,我们欢迎所有人贡献针对这些平台的相关实现。\nGitHub Checks API 实现 目前,我们对 GitHub Checks API 的支持工作已基本完成。 除此以外,我们还实现了一个用于表明当前 Jenkins 构建状况的功能。 在发布之后,通过调用我们的 API,Jenkins 的开发者们(特别是插件开发者们)能够为 GitHub Branch SCM 项目创建属于他们自己的 GitHub Checks。\n例子:要创建一个如下图所示的 check run: 用户需要如下地调用我们的接口:\nChecksDetails details = new ChecksDetailsBuilder() .withName(\u0026quot;Jenkins\u0026quot;) .withStatus(ChecksStatus.COMPLETED) .withDetailsURL(\u0026quot;https://ci.jenkins.io\u0026quot;) .withStartedAt(LocalDateTime.now(ZoneOffset.UTC)) .withCompletedAt(LocalDateTime.now(ZoneOffset.UTC)) .withConclusion(ChecksConclusion.SUCCESS) .withOutput(new ChecksOutputBuilder() .withTitle(\u0026quot;Jenkins Check\u0026quot;) .withSummary(\u0026quot;# A Successful Build\u0026quot;) .withText(\u0026quot;## 0 Failures\u0026quot;) .withAnnotations(Arrays.asList( new ChecksAnnotationBuilder() .withPath(\u0026quot;Jenkinsfile\u0026quot;) .withLine(1) .withAnnotationLevel(ChecksAnnotationLevel.NOTICE) .withMessage(\u0026quot;say hello to Jenkins\u0026quot;) .withStartColumn(0) .withEndColumn(20) .withTitle(\u0026quot;Hello Jenkins\u0026quot;) .withRawDetails(\u0026quot;a simple echo command\u0026quot;) .build(), new ChecksAnnotationBuilder() .withPath(\u0026quot;Jenkinsfile\u0026quot;) .withLine(2) .withAnnotationLevel(ChecksAnnotationLevel.WARNING) .withMessage(\u0026quot;say hello to GitHub Checks API\u0026quot;) .withStartColumn(0) .withEndColumn(30) .withTitle(\u0026quot;Hello GitHub Checks API\u0026quot;) .withRawDetails(\u0026quot;a simple echo command\u0026quot;) .build())) .build()) .withActions(Collections.singletonList( new ChecksAction(\u0026quot;formatting\u0026quot;, \u0026quot;format code\u0026quot;, \u0026quot;#0\u0026quot;))) .build(); ChecksPublisher publisher = ChecksPublisherFactory.fromRun(run); publisher.publish(details); 未来的工作 我们的下一步计划是将该接口集成到 Warnings Next General Plugin 和 Code Coverage API Plugin 当中。 在此之后,我们还会添加对流水线的支持:在创建 check run 时,用户可以直接在流水线中调用我们的接口而无需依赖其他插件的实现.\n相关资源 GitHub 仓库 项目主页 Gitter 聊天室 引用 GitHub 文档:使用 Checks API 创建 CI 测试 Warnings Next Generation Plugin:源代码视图 ", + "auhtor": "XiongKezhi", + "translator": "", + "original": "https://www.jenkins.io/blog/2020/07/09/github-checks-api-plugin-coding-phase-1/", + "poster": "jenkins-gsoc-logo_small.png" + }, { "uri": "https://jenkins-zh.cn/wechat/articles/2020/08/2020-08-05-ci-cd-with-argo-on-kubernetes/", "title": "在 Kubernetes 上使用 Argo 实现 CI/CD", @@ -2885,6 +2898,19 @@ "original": "", "poster": "" }, + { + "uri": "https://jenkins-zh.cn/tags/api/", + "title": "Api", + "type": "tags", + "date": "2020-08-07 00:00:00 +0000 UTC", + "tags": [], + "description": "", + "content": "", + "auhtor": "", + "translator": "", + "original": "", + "poster": "" + }, { "uri": "https://jenkins-zh.cn/tags/argo/", "title": "Argo", @@ -3396,7 +3422,7 @@ "uri": "https://jenkins-zh.cn/tags/developer/", "title": "Developer", "type": "tags", - "date": "2020-04-01 00:00:00 +0000 UTC", + "date": "2020-08-07 00:00:00 +0000 UTC", "tags": [], "description": "", "content": "", @@ -3643,7 +3669,7 @@ "uri": "https://jenkins-zh.cn/tags/github/", "title": "Github", "type": "tags", - "date": "2020-06-17 00:00:00 +0000 UTC", + "date": "2020-08-07 00:00:00 +0000 UTC", "tags": [], "description": "", "content": "", @@ -3708,7 +3734,7 @@ "uri": "https://jenkins-zh.cn/tags/gsoc/", "title": "Gsoc", "type": "tags", - "date": "2020-07-06 00:00:00 +0000 UTC", + "date": "2020-08-07 00:00:00 +0000 UTC", "tags": [], "description": "", "content": "", @@ -3734,7 +3760,7 @@ "uri": "https://jenkins-zh.cn/tags/gsoc2020/", "title": "Gsoc2020", "type": "tags", - "date": "2020-07-06 00:00:00 +0000 UTC", + "date": "2020-08-07 00:00:00 +0000 UTC", "tags": [], "description": "", "content": "", @@ -4540,7 +4566,7 @@ "uri": "https://jenkins-zh.cn/tags/plugins/", "title": "Plugins", "type": "tags", - "date": "2020-07-06 00:00:00 +0000 UTC", + "date": "2020-08-07 00:00:00 +0000 UTC", "tags": [], "description": "", "content": "", @@ -5008,7 +5034,7 @@ "uri": "https://jenkins-zh.cn/wechat/", "title": "Wechats", "type": "wechat", - "date": "2020-08-05 00:00:00 +0000 UTC", + "date": "2020-08-07 00:00:00 +0000 UTC", "tags": [], "description": "", "content": "", diff --git a/index.xml b/index.xml index 4cee23b1222fc9e7444a8d05319103c61bf1ba2f..4fb9f4293b42478076a6f33b58b0f23aa261d190 100644 --- a/index.xml +++ b/index.xml @@ -36,6 +36,21 @@ GitHub 请您使用同一个 GitHub 账号来与大家交流,不欢迎使用所谓的“小号”。 + + GSoC: GitHub Checks API 项目第一阶段总结 + https://jenkins-zh.cn/wechat/articles/2020/08/2020-08-07-github-checks-api-plugin-project-coding-phase-1/ + Fri, 07 Aug 2020 00:00:00 +0000 + + https://jenkins-zh.cn/wechat/articles/2020/08/2020-08-07-github-checks-api-plugin-project-coding-phase-1/ + 这篇博客将介绍 GSoC 项目 GitHub Checks API Plugin 在一阶段的相关进展。 +简单来说,GitHub Checks API 就是一套可高度定制化接受 CI 报告的接口。 CI 工具可以通过该接口反馈信息给特定的 Pull Request,随后,用户便可以直接在 GitHub 的 UI 界面上直观的浏览 CI 报告。 +更激动人心的是,它可以针对指定的代码行进行注释,这类似于开发者平时在代码审查时留下的评论。 +同时,在 Jenkins 这边,Warnings Next Generation Plugin 能通过源代码视图实现类似的功能。 +因此,通过使用 GitHub Checks API 将这些信息直接反馈给 GitHub 能使 Jenkins 对 GitHub 用户更加友好。 +阶段一实现的相关特性 在过去的一个月里,我们团队的工作主要集中在 General Checks API 和 GitHub Checks API 的实现上。 +General Checks API 尽管 General Checks API 是基于 GitHub Checks API 的语义实现的,我们仍然希望能提供这样的泛化接口为其他平台的相关概念做好准备,例如:GitLab 上的 Commit Status API。 在今后,我们欢迎所有人贡献针对这些平台的相关实现。 + + 在 Kubernetes 上使用 Argo 实现 CI/CD https://jenkins-zh.cn/wechat/articles/2020/08/2020-08-05-ci-cd-with-argo-on-kubernetes/ diff --git a/sitemap.xml b/sitemap.xml index 22b8e096eb4826a2b26303255138fc33e0f538cd..dfd87c350f68718ebdd46170e2e602faa78feeda 100644 --- a/sitemap.xml +++ b/sitemap.xml @@ -11,6 +11,11 @@ https://jenkins-zh.cn/about/code-of-conduct/ + + https://jenkins-zh.cn/wechat/articles/2020/08/2020-08-07-github-checks-api-plugin-project-coding-phase-1/ + 2020-08-07T00:00:00+00:00 + + https://jenkins-zh.cn/wechat/articles/2020/08/2020-08-05-ci-cd-with-argo-on-kubernetes/ 2020-08-05T00:00:00+00:00 @@ -1086,6 +1091,12 @@ 0 + + https://jenkins-zh.cn/tags/api/ + 2020-08-07T00:00:00+00:00 + 0 + + https://jenkins-zh.cn/tags/argo/ 2020-08-05T00:00:00+00:00 @@ -1317,7 +1328,7 @@ https://jenkins-zh.cn/tags/developer/ - 2020-04-01T00:00:00+00:00 + 2020-08-07T00:00:00+00:00 0 @@ -1428,7 +1439,7 @@ https://jenkins-zh.cn/tags/github/ - 2020-06-17T00:00:00+00:00 + 2020-08-07T00:00:00+00:00 0 @@ -1458,7 +1469,7 @@ https://jenkins-zh.cn/tags/gsoc/ - 2020-07-06T00:00:00+00:00 + 2020-08-07T00:00:00+00:00 0 @@ -1470,7 +1481,7 @@ https://jenkins-zh.cn/tags/gsoc2020/ - 2020-07-06T00:00:00+00:00 + 2020-08-07T00:00:00+00:00 0 @@ -1819,7 +1830,7 @@ https://jenkins-zh.cn/tags/plugins/ - 2020-07-06T00:00:00+00:00 + 2020-08-07T00:00:00+00:00 0 @@ -2028,7 +2039,7 @@ https://jenkins-zh.cn/wechat/ - 2020-08-05T00:00:00+00:00 + 2020-08-07T00:00:00+00:00 0 diff --git a/tags/api/index.html b/tags/api/index.html new file mode 100644 index 0000000000000000000000000000000000000000..2d7995bf1d0e559e11ea30352f2b96d70679fccb --- /dev/null +++ b/tags/api/index.html @@ -0,0 +1,413 @@ + + + + + + + + + + + + + Api - Jenkins 中文社区 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+ + +
+ + + + +
+ +
+ + +
+ +
+ + +

+ GSoC: GitHub Checks API 项目第一阶段总结 +

+ + + + +
+
+ + + +
+
+ + + + +
+ +
+ +
+ +
+ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tags/api/index.xml b/tags/api/index.xml new file mode 100644 index 0000000000000000000000000000000000000000..3905fe1b7d453e8b5024cd48198508f637d06855 --- /dev/null +++ b/tags/api/index.xml @@ -0,0 +1,30 @@ + + + + Api on Jenkins 中文社区 + https://jenkins-zh.cn/tags/api/ + Recent content in Api on Jenkins 中文社区 + Hugo -- gohugo.io + zh-CN + Fri, 07 Aug 2020 00:00:00 +0000 + + + + + + GSoC: GitHub Checks API 项目第一阶段总结 + https://jenkins-zh.cn/wechat/articles/2020/08/2020-08-07-github-checks-api-plugin-project-coding-phase-1/ + Fri, 07 Aug 2020 00:00:00 +0000 + + https://jenkins-zh.cn/wechat/articles/2020/08/2020-08-07-github-checks-api-plugin-project-coding-phase-1/ + 这篇博客将介绍 GSoC 项目 GitHub Checks API Plugin 在一阶段的相关进展。 +简单来说,GitHub Checks API 就是一套可高度定制化接受 CI 报告的接口。 CI 工具可以通过该接口反馈信息给特定的 Pull Request,随后,用户便可以直接在 GitHub 的 UI 界面上直观的浏览 CI 报告。 +更激动人心的是,它可以针对指定的代码行进行注释,这类似于开发者平时在代码审查时留下的评论。 +同时,在 Jenkins 这边,Warnings Next Generation Plugin 能通过源代码视图实现类似的功能。 +因此,通过使用 GitHub Checks API 将这些信息直接反馈给 GitHub 能使 Jenkins 对 GitHub 用户更加友好。 +阶段一实现的相关特性 在过去的一个月里,我们团队的工作主要集中在 General Checks API 和 GitHub Checks API 的实现上。 +General Checks API 尽管 General Checks API 是基于 GitHub Checks API 的语义实现的,我们仍然希望能提供这样的泛化接口为其他平台的相关概念做好准备,例如:GitLab 上的 Commit Status API。 在今后,我们欢迎所有人贡献针对这些平台的相关实现。 + + + + \ No newline at end of file diff --git a/tags/api/page/1/index.html b/tags/api/page/1/index.html new file mode 100644 index 0000000000000000000000000000000000000000..7444a1251649d00a9b0059934439de4d29dffccb --- /dev/null +++ b/tags/api/page/1/index.html @@ -0,0 +1 @@ +https://jenkins-zh.cn/tags/api/ \ No newline at end of file diff --git a/tags/developer/index.html b/tags/developer/index.html index cdaffe529f662509afb99bb1bb0facc3b1b93dc8..9f39c6f3dbc56bbe5ba2ae698ca0915f0c05ab44 100644 --- a/tags/developer/index.html +++ b/tags/developer/index.html @@ -44,7 +44,7 @@ - + @@ -217,6 +217,33 @@ var trackOutboundLink = function(id, url) {
+

+ GSoC: GitHub Checks API 项目第一阶段总结 +

+ + + + +
+ + + + + +
+ +
+ +

动手实践:美化 Jenkins 报告插件的用户界面

diff --git a/tags/developer/index.xml b/tags/developer/index.xml index 26b9c8c8b636fb2b0eee503f634892a42aabe3d5..48a67a58769ea32495df6c23f02e5c033ef89f9a 100644 --- a/tags/developer/index.xml +++ b/tags/developer/index.xml @@ -6,11 +6,26 @@ Recent content in Developer on Jenkins 中文社区 Hugo -- gohugo.io zh-CN - Wed, 01 Apr 2020 00:00:00 +0000 + Fri, 07 Aug 2020 00:00:00 +0000 + + GSoC: GitHub Checks API 项目第一阶段总结 + https://jenkins-zh.cn/wechat/articles/2020/08/2020-08-07-github-checks-api-plugin-project-coding-phase-1/ + Fri, 07 Aug 2020 00:00:00 +0000 + + https://jenkins-zh.cn/wechat/articles/2020/08/2020-08-07-github-checks-api-plugin-project-coding-phase-1/ + 这篇博客将介绍 GSoC 项目 GitHub Checks API Plugin 在一阶段的相关进展。 +简单来说,GitHub Checks API 就是一套可高度定制化接受 CI 报告的接口。 CI 工具可以通过该接口反馈信息给特定的 Pull Request,随后,用户便可以直接在 GitHub 的 UI 界面上直观的浏览 CI 报告。 +更激动人心的是,它可以针对指定的代码行进行注释,这类似于开发者平时在代码审查时留下的评论。 +同时,在 Jenkins 这边,Warnings Next Generation Plugin 能通过源代码视图实现类似的功能。 +因此,通过使用 GitHub Checks API 将这些信息直接反馈给 GitHub 能使 Jenkins 对 GitHub 用户更加友好。 +阶段一实现的相关特性 在过去的一个月里,我们团队的工作主要集中在 General Checks API 和 GitHub Checks API 的实现上。 +General Checks API 尽管 General Checks API 是基于 GitHub Checks API 的语义实现的,我们仍然希望能提供这样的泛化接口为其他平台的相关概念做好准备,例如:GitLab 上的 Commit Status API。 在今后,我们欢迎所有人贡献针对这些平台的相关实现。 + + 动手实践:美化 Jenkins 报告插件的用户界面 https://jenkins-zh.cn/wechat/articles/2020/04/2020-04-01-hands-on-beautify-the-user-interface-of-jenkins-reporter-plugins/ diff --git a/tags/github/index.html b/tags/github/index.html index 4392207130502b635bfbcbd8dd1b348bc07ec987..ee7dd1ecc25f9affad53ab3222d1d88f043df557 100644 --- a/tags/github/index.html +++ b/tags/github/index.html @@ -44,7 +44,7 @@ - + @@ -217,6 +217,33 @@ var trackOutboundLink = function(id, url) {
+

+ GSoC: GitHub Checks API 项目第一阶段总结 +

+ + + + +
+
+ + + + +
+ +
+ +

GitHub App 身份验证支持已发布

diff --git a/tags/github/index.xml b/tags/github/index.xml index 4f199c8c1131905842027930c586c5daab0502ad..1d2fc3032646df99ff8fceded3fef377ac084eda 100644 --- a/tags/github/index.xml +++ b/tags/github/index.xml @@ -6,11 +6,26 @@ Recent content in Github on Jenkins 中文社区 Hugo -- gohugo.io zh-CN - Wed, 17 Jun 2020 00:00:00 +0000 + Fri, 07 Aug 2020 00:00:00 +0000 + + GSoC: GitHub Checks API 项目第一阶段总结 + https://jenkins-zh.cn/wechat/articles/2020/08/2020-08-07-github-checks-api-plugin-project-coding-phase-1/ + Fri, 07 Aug 2020 00:00:00 +0000 + + https://jenkins-zh.cn/wechat/articles/2020/08/2020-08-07-github-checks-api-plugin-project-coding-phase-1/ + 这篇博客将介绍 GSoC 项目 GitHub Checks API Plugin 在一阶段的相关进展。 +简单来说,GitHub Checks API 就是一套可高度定制化接受 CI 报告的接口。 CI 工具可以通过该接口反馈信息给特定的 Pull Request,随后,用户便可以直接在 GitHub 的 UI 界面上直观的浏览 CI 报告。 +更激动人心的是,它可以针对指定的代码行进行注释,这类似于开发者平时在代码审查时留下的评论。 +同时,在 Jenkins 这边,Warnings Next Generation Plugin 能通过源代码视图实现类似的功能。 +因此,通过使用 GitHub Checks API 将这些信息直接反馈给 GitHub 能使 Jenkins 对 GitHub 用户更加友好。 +阶段一实现的相关特性 在过去的一个月里,我们团队的工作主要集中在 General Checks API 和 GitHub Checks API 的实现上。 +General Checks API 尽管 General Checks API 是基于 GitHub Checks API 的语义实现的,我们仍然希望能提供这样的泛化接口为其他平台的相关概念做好准备,例如:GitLab 上的 Commit Status API。 在今后,我们欢迎所有人贡献针对这些平台的相关实现。 + + GitHub App 身份验证支持已发布 https://jenkins-zh.cn/wechat/articles/2020/06/2020-06-17-github-app-authentication-support-released/ diff --git a/tags/gsoc/index.html b/tags/gsoc/index.html index 888a03d3ee296d3d0a2797608d334c0cc1b92a90..f701bf64b9f1bcde88d2d732801be454414a5c69 100644 --- a/tags/gsoc/index.html +++ b/tags/gsoc/index.html @@ -44,7 +44,7 @@ - + @@ -217,6 +217,33 @@ var trackOutboundLink = function(id, url) {
+

+ GSoC: GitHub Checks API 项目第一阶段总结 +

+ + + + +
+
+ + + + +
+ +
+ +

社区推送博客-机器学习插件项目

diff --git a/tags/gsoc/index.xml b/tags/gsoc/index.xml index e6e074192aceb5e1b4bea6959df79e1f62e8f9a9..54dc0a0fb124bd8cae820512894cdea6f38e7129 100644 --- a/tags/gsoc/index.xml +++ b/tags/gsoc/index.xml @@ -6,11 +6,26 @@ Recent content in Gsoc on Jenkins 中文社区 Hugo -- gohugo.io zh-CN - Mon, 06 Jul 2020 00:00:00 +0000 + Fri, 07 Aug 2020 00:00:00 +0000 + + GSoC: GitHub Checks API 项目第一阶段总结 + https://jenkins-zh.cn/wechat/articles/2020/08/2020-08-07-github-checks-api-plugin-project-coding-phase-1/ + Fri, 07 Aug 2020 00:00:00 +0000 + + https://jenkins-zh.cn/wechat/articles/2020/08/2020-08-07-github-checks-api-plugin-project-coding-phase-1/ + 这篇博客将介绍 GSoC 项目 GitHub Checks API Plugin 在一阶段的相关进展。 +简单来说,GitHub Checks API 就是一套可高度定制化接受 CI 报告的接口。 CI 工具可以通过该接口反馈信息给特定的 Pull Request,随后,用户便可以直接在 GitHub 的 UI 界面上直观的浏览 CI 报告。 +更激动人心的是,它可以针对指定的代码行进行注释,这类似于开发者平时在代码审查时留下的评论。 +同时,在 Jenkins 这边,Warnings Next Generation Plugin 能通过源代码视图实现类似的功能。 +因此,通过使用 GitHub Checks API 将这些信息直接反馈给 GitHub 能使 Jenkins 对 GitHub 用户更加友好。 +阶段一实现的相关特性 在过去的一个月里,我们团队的工作主要集中在 General Checks API 和 GitHub Checks API 的实现上。 +General Checks API 尽管 General Checks API 是基于 GitHub Checks API 的语义实现的,我们仍然希望能提供这样的泛化接口为其他平台的相关概念做好准备,例如:GitLab 上的 Commit Status API。 在今后,我们欢迎所有人贡献针对这些平台的相关实现。 + + 社区推送博客-机器学习插件项目 https://jenkins-zh.cn/wechat/articles/2020/07/2020-07-06-machine-learning-plugin-project-community-bonding-blog-post/ diff --git a/tags/gsoc2020/index.html b/tags/gsoc2020/index.html index dfb76d1586824524b122ac6acb075da552d824ad..70734ecbc0fcee87a37f061a139d5b8e7185c864 100644 --- a/tags/gsoc2020/index.html +++ b/tags/gsoc2020/index.html @@ -44,7 +44,7 @@ - + @@ -217,6 +217,33 @@ var trackOutboundLink = function(id, url) {
+

+ GSoC: GitHub Checks API 项目第一阶段总结 +

+ + + + +
+
+ + + + +
+ +
+ +

社区推送博客-机器学习插件项目

diff --git a/tags/gsoc2020/index.xml b/tags/gsoc2020/index.xml index cf7108c95fe03a1d53181ad19ad20541d2bbd5bf..250d095a1a8a669e242964605ea3cb4c434b2b82 100644 --- a/tags/gsoc2020/index.xml +++ b/tags/gsoc2020/index.xml @@ -6,11 +6,26 @@ Recent content in Gsoc2020 on Jenkins 中文社区 Hugo -- gohugo.io zh-CN - Mon, 06 Jul 2020 00:00:00 +0000 + Fri, 07 Aug 2020 00:00:00 +0000 + + GSoC: GitHub Checks API 项目第一阶段总结 + https://jenkins-zh.cn/wechat/articles/2020/08/2020-08-07-github-checks-api-plugin-project-coding-phase-1/ + Fri, 07 Aug 2020 00:00:00 +0000 + + https://jenkins-zh.cn/wechat/articles/2020/08/2020-08-07-github-checks-api-plugin-project-coding-phase-1/ + 这篇博客将介绍 GSoC 项目 GitHub Checks API Plugin 在一阶段的相关进展。 +简单来说,GitHub Checks API 就是一套可高度定制化接受 CI 报告的接口。 CI 工具可以通过该接口反馈信息给特定的 Pull Request,随后,用户便可以直接在 GitHub 的 UI 界面上直观的浏览 CI 报告。 +更激动人心的是,它可以针对指定的代码行进行注释,这类似于开发者平时在代码审查时留下的评论。 +同时,在 Jenkins 这边,Warnings Next Generation Plugin 能通过源代码视图实现类似的功能。 +因此,通过使用 GitHub Checks API 将这些信息直接反馈给 GitHub 能使 Jenkins 对 GitHub 用户更加友好。 +阶段一实现的相关特性 在过去的一个月里,我们团队的工作主要集中在 General Checks API 和 GitHub Checks API 的实现上。 +General Checks API 尽管 General Checks API 是基于 GitHub Checks API 的语义实现的,我们仍然希望能提供这样的泛化接口为其他平台的相关概念做好准备,例如:GitLab 上的 Commit Status API。 在今后,我们欢迎所有人贡献针对这些平台的相关实现。 + + 社区推送博客-机器学习插件项目 https://jenkins-zh.cn/wechat/articles/2020/07/2020-07-06-machine-learning-plugin-project-community-bonding-blog-post/ diff --git a/tags/index.html b/tags/index.html index 1b8f6b761fbb5d3c5f388bad0a44d65d69c94967..8ef46451300462ba7f8d785b273215c7d77c5bca 100644 --- a/tags/index.html +++ b/tags/index.html @@ -292,6 +292,22 @@ var trackOutboundLink = function(id, url) {
+ + +

@@ -1221,6 +1237,12 @@ var trackOutboundLink = function(id, url) {

+

+ + GSoC: GitHub Checks API 项目第一阶段总结 + +

+

动手实践:美化 Jenkins 报告插件的用户界面 @@ -1785,6 +1807,12 @@ var trackOutboundLink = function(id, url) {

+

+ + GSoC: GitHub Checks API 项目第一阶段总结 + +

+

GitHub App 身份验证支持已发布 @@ -1883,6 +1911,12 @@ var trackOutboundLink = function(id, url) {

+

+ + GSoC: GitHub Checks API 项目第一阶段总结 + +

+

社区推送博客-机器学习插件项目 @@ -1999,6 +2033,12 @@ var trackOutboundLink = function(id, url) {

+

+ + GSoC: GitHub Checks API 项目第一阶段总结 + +

+

社区推送博客-机器学习插件项目 @@ -3555,6 +3595,12 @@ var trackOutboundLink = function(id, url) {

+

+ + GSoC: GitHub Checks API 项目第一阶段总结 + +

+

社区推送博客-机器学习插件项目 diff --git a/tags/index.xml b/tags/index.xml index f4f11b56ee0ae03dd35dec431eb5d1c24ec732d8..a9e4fcbee92568fa1098900ee879e42accda0a64 100644 --- a/tags/index.xml +++ b/tags/index.xml @@ -47,6 +47,15 @@ + + Api + https://jenkins-zh.cn/tags/api/ + Fri, 07 Aug 2020 00:00:00 +0000 + + https://jenkins-zh.cn/tags/api/ + + + Argo https://jenkins-zh.cn/tags/argo/ @@ -383,7 +392,7 @@ Developer https://jenkins-zh.cn/tags/developer/ - Wed, 01 Apr 2020 00:00:00 +0000 + Fri, 07 Aug 2020 00:00:00 +0000 https://jenkins-zh.cn/tags/developer/ @@ -545,7 +554,7 @@ Github https://jenkins-zh.cn/tags/github/ - Wed, 17 Jun 2020 00:00:00 +0000 + Fri, 07 Aug 2020 00:00:00 +0000 https://jenkins-zh.cn/tags/github/ @@ -590,7 +599,7 @@ Gsoc https://jenkins-zh.cn/tags/gsoc/ - Mon, 06 Jul 2020 00:00:00 +0000 + Fri, 07 Aug 2020 00:00:00 +0000 https://jenkins-zh.cn/tags/gsoc/ @@ -608,7 +617,7 @@ Gsoc2020 https://jenkins-zh.cn/tags/gsoc2020/ - Mon, 06 Jul 2020 00:00:00 +0000 + Fri, 07 Aug 2020 00:00:00 +0000 https://jenkins-zh.cn/tags/gsoc2020/ @@ -1058,7 +1067,7 @@ Plugins https://jenkins-zh.cn/tags/plugins/ - Mon, 06 Jul 2020 00:00:00 +0000 + Fri, 07 Aug 2020 00:00:00 +0000 https://jenkins-zh.cn/tags/plugins/ diff --git a/tags/plugins/index.html b/tags/plugins/index.html index 76e1dabb1cbff44545615ab77651ebb8f52fa7f3..3f01ecbd63f9cc36aab53e99ea1dd0fea9565983 100644 --- a/tags/plugins/index.html +++ b/tags/plugins/index.html @@ -44,7 +44,7 @@ - + @@ -217,6 +217,33 @@ var trackOutboundLink = function(id, url) {
+

+ GSoC: GitHub Checks API 项目第一阶段总结 +

+ + + + +
+

+ + + + +
+ +
+ +

社区推送博客-机器学习插件项目

diff --git a/tags/plugins/index.xml b/tags/plugins/index.xml index 3f66985069c01c6ba73b9a2ecd905cbb051991f6..e9c4a9efe4674858adc8b4c2ebccaaa3c5db3718 100644 --- a/tags/plugins/index.xml +++ b/tags/plugins/index.xml @@ -6,11 +6,26 @@ Recent content in Plugins on Jenkins 中文社区 Hugo -- gohugo.io zh-CN - Mon, 06 Jul 2020 00:00:00 +0000 + Fri, 07 Aug 2020 00:00:00 +0000 + + GSoC: GitHub Checks API 项目第一阶段总结 + https://jenkins-zh.cn/wechat/articles/2020/08/2020-08-07-github-checks-api-plugin-project-coding-phase-1/ + Fri, 07 Aug 2020 00:00:00 +0000 + + https://jenkins-zh.cn/wechat/articles/2020/08/2020-08-07-github-checks-api-plugin-project-coding-phase-1/ + 这篇博客将介绍 GSoC 项目 GitHub Checks API Plugin 在一阶段的相关进展。 +简单来说,GitHub Checks API 就是一套可高度定制化接受 CI 报告的接口。 CI 工具可以通过该接口反馈信息给特定的 Pull Request,随后,用户便可以直接在 GitHub 的 UI 界面上直观的浏览 CI 报告。 +更激动人心的是,它可以针对指定的代码行进行注释,这类似于开发者平时在代码审查时留下的评论。 +同时,在 Jenkins 这边,Warnings Next Generation Plugin 能通过源代码视图实现类似的功能。 +因此,通过使用 GitHub Checks API 将这些信息直接反馈给 GitHub 能使 Jenkins 对 GitHub 用户更加友好。 +阶段一实现的相关特性 在过去的一个月里,我们团队的工作主要集中在 General Checks API 和 GitHub Checks API 的实现上。 +General Checks API 尽管 General Checks API 是基于 GitHub Checks API 的语义实现的,我们仍然希望能提供这样的泛化接口为其他平台的相关概念做好准备,例如:GitLab 上的 Commit Status API。 在今后,我们欢迎所有人贡献针对这些平台的相关实现。 + + 社区推送博客-机器学习插件项目 https://jenkins-zh.cn/wechat/articles/2020/07/2020-07-06-machine-learning-plugin-project-community-bonding-blog-post/ diff --git a/wechat/articles/2019/03/2019-03-13-gsoc2019-announcement/index.html b/wechat/articles/2019/03/2019-03-13-gsoc2019-announcement/index.html index f3d6abe9e1ff055c0180847ea377fc0c6a91ce66..02ebaa680844aefb20aed02f9acf8fabcfdfce27 100644 --- a/wechat/articles/2019/03/2019-03-13-gsoc2019-announcement/index.html +++ b/wechat/articles/2019/03/2019-03-13-gsoc2019-announcement/index.html @@ -451,8 +451,8 @@ f6 ph3 pv1 br2 dib tc ttu mv3 bg-primary-color white hover-bg-green link
  • - - 社区推送博客-机器学习插件项目 + + GSoC: GitHub Checks API 项目第一阶段总结
  • @@ -463,6 +463,15 @@ f6 ph3 pv1 br2 dib tc ttu mv3 bg-primary-color white hover-bg-green link +
  • + + 社区推送博客-机器学习插件项目 + +
  • + + + +
  • 2019 年 Google 编程之夏活动报告 diff --git a/wechat/articles/2019/04/2019-04-15-security-spring-cleaning/index.html b/wechat/articles/2019/04/2019-04-15-security-spring-cleaning/index.html index 52a0cf0e5e265b7122d3caade4b4e5e502aa1776..daa8dd640112b252d266bdd5a22539efb55a2a30 100644 --- a/wechat/articles/2019/04/2019-04-15-security-spring-cleaning/index.html +++ b/wechat/articles/2019/04/2019-04-15-security-spring-cleaning/index.html @@ -377,8 +377,8 @@ f6 ph3 pv1 br2 dib tc ttu mv3 bg-primary-color white hover-bg-green link
  • - - 社区推送博客-机器学习插件项目 + + GSoC: GitHub Checks API 项目第一阶段总结
  • @@ -389,6 +389,15 @@ f6 ph3 pv1 br2 dib tc ttu mv3 bg-primary-color white hover-bg-green link +
  • + + 社区推送博客-机器学习插件项目 + +
  • + + + +
  • 动手实践:美化 Jenkins 报告插件的用户界面 diff --git a/wechat/articles/2019/05/2019-05-27-docs-sig-announcement/index.html b/wechat/articles/2019/05/2019-05-27-docs-sig-announcement/index.html index 25d38035fbfc3167cb939f24c55581180f49a14a..18ab8b7ef04bd286714f38e5be1ced42ac7bae31 100644 --- a/wechat/articles/2019/05/2019-05-27-docs-sig-announcement/index.html +++ b/wechat/articles/2019/05/2019-05-27-docs-sig-announcement/index.html @@ -375,10 +375,10 @@ var trackOutboundLink = function(id, url) {
  • 在 Kubernetes 上使用 Jenkins
  • -
  • Jenkins 插件的微基准测试框架
  • -
  • 多分支流水线任务对 GitLab SCM 的支持
  • +
  • Jenkins 插件的微基准测试框架
  • +
    diff --git a/wechat/articles/2019/07/2019-07-29-leveraging-jenkins-on-kubernetes/index.html b/wechat/articles/2019/07/2019-07-29-leveraging-jenkins-on-kubernetes/index.html index 7c759b242d6345701cf0ee08937c4dbde89e9063..d0a0ed780f2ba8cecf2e13420ee1559f4ed80655 100644 --- a/wechat/articles/2019/07/2019-07-29-leveraging-jenkins-on-kubernetes/index.html +++ b/wechat/articles/2019/07/2019-07-29-leveraging-jenkins-on-kubernetes/index.html @@ -466,8 +466,8 @@ f6 ph3 pv1 br2 dib tc ttu mv3 bg-primary-color white hover-bg-green link
  • - - 社区推送博客-机器学习插件项目 + + GSoC: GitHub Checks API 项目第一阶段总结
  • @@ -478,6 +478,15 @@ f6 ph3 pv1 br2 dib tc ttu mv3 bg-primary-color white hover-bg-green link +
  • + + 社区推送博客-机器学习插件项目 + +
  • + + + +
  • 动手实践:美化 Jenkins 报告插件的用户界面 diff --git a/wechat/articles/2019/10/2019-10-25-plugin-management-tool-alpha-release/index.html b/wechat/articles/2019/10/2019-10-25-plugin-management-tool-alpha-release/index.html index 8d670ef6b2dd15f10ac865e2ec91cb99b5ab8cf4..c3e641522118bf5d38afc8d9fe3374cc1fc325ed 100644 --- a/wechat/articles/2019/10/2019-10-25-plugin-management-tool-alpha-release/index.html +++ b/wechat/articles/2019/10/2019-10-25-plugin-management-tool-alpha-release/index.html @@ -433,8 +433,8 @@ f6 ph3 pv1 br2 dib tc ttu mv3 bg-primary-color white hover-bg-green link
  • - - 社区推送博客-机器学习插件项目 + + GSoC: GitHub Checks API 项目第一阶段总结
  • @@ -445,6 +445,15 @@ f6 ph3 pv1 br2 dib tc ttu mv3 bg-primary-color white hover-bg-green link +
  • + + 社区推送博客-机器学习插件项目 + +
  • + + + +
  • 动手实践:美化 Jenkins 报告插件的用户界面 diff --git a/wechat/articles/2019/11/2019-11-12-2019-jenkins-board-and-officer-elections-update/index.html b/wechat/articles/2019/11/2019-11-12-2019-jenkins-board-and-officer-elections-update/index.html index 62e3a72a178a001a94e702a896d0e9399c3a752e..ace45094d4408304d7b4c3bf8e881a0a944e7906 100644 --- a/wechat/articles/2019/11/2019-11-12-2019-jenkins-board-and-officer-elections-update/index.html +++ b/wechat/articles/2019/11/2019-11-12-2019-jenkins-board-and-officer-elections-update/index.html @@ -473,10 +473,10 @@ var trackOutboundLink = function(id, url) {
  • 在 Kubernetes 上使用 Jenkins
  • -
  • 多分支流水线任务对 GitLab SCM 的支持
  • -
  • Jenkins 插件的微基准测试框架
  • +
  • 多分支流水线任务对 GitLab SCM 的支持
  • +
  • Jenkins 文档特别兴趣小组
  • diff --git a/wechat/articles/2020/06/2020-06-17-github-app-authentication-support-released/index.html b/wechat/articles/2020/06/2020-06-17-github-app-authentication-support-released/index.html index d6ae0ef555597eb3cbfb963c166ff9249edda32a..1dcc6f68b3c21b0b1d2fa47038e0304aae5b2624 100644 --- a/wechat/articles/2020/06/2020-06-17-github-app-authentication-support-released/index.html +++ b/wechat/articles/2020/06/2020-06-17-github-app-authentication-support-released/index.html @@ -441,6 +441,12 @@ f6 ph3 pv1 br2 dib tc ttu mv3 bg-primary-color white hover-bg-green link +
  • + + GSoC: GitHub Checks API 项目第一阶段总结 + +
  • +
  • @@ -448,6 +454,9 @@ f6 ph3 pv1 br2 dib tc ttu mv3 bg-primary-color white hover-bg-green link
  • + + +
  • Jenkins 教程:使用 Ngrok 配置(SCM)Github 触发器和 Git 轮询 diff --git a/wechat/articles/2020/08/2020-08-05-ci-cd-with-argo-on-kubernetes/index.html b/wechat/articles/2020/08/2020-08-05-ci-cd-with-argo-on-kubernetes/index.html index 08223b370f79d8b54028c99c4aafebe17212bd7b..2703c385f06d3f09bddc1e04be2740ce00427be5 100644 --- a/wechat/articles/2020/08/2020-08-05-ci-cd-with-argo-on-kubernetes/index.html +++ b/wechat/articles/2020/08/2020-08-05-ci-cd-with-argo-on-kubernetes/index.html @@ -260,6 +260,14 @@ var trackOutboundLink = function(id, url) { + + + + + + + + diff --git a/wechat/articles/2020/08/2020-08-07-github-checks-api-plugin-project-coding-phase-1/index.html b/wechat/articles/2020/08/2020-08-07-github-checks-api-plugin-project-coding-phase-1/index.html new file mode 100644 index 0000000000000000000000000000000000000000..52cad52b381c1a453ec63f9221ccd300dd8eb4dd --- /dev/null +++ b/wechat/articles/2020/08/2020-08-07-github-checks-api-plugin-project-coding-phase-1/index.html @@ -0,0 +1,759 @@ + + + + + + + + + + + + + GSoC: GitHub Checks API 项目第一阶段总结 - Jenkins 中文社区 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    +
    +
    + + +
    + + + + + + + +
    + + + + +
    +
    + +
    +
    +
    + + + + “GSoC: GitHub Checks API 项目第一阶段总结” + 更新于:August 7, 2020 +
    + + 完善此页 + + + + + + + + + + +
    +
    +
    + + + +
    + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/wechat/index.html b/wechat/index.html index 3f400ddc710dff9212ab2afa728c5037aff607c3..1770d442a088e52195b1df280b7c6d554a0f1969 100644 --- a/wechat/index.html +++ b/wechat/index.html @@ -44,7 +44,7 @@ - + @@ -217,6 +217,33 @@ var trackOutboundLink = function(id, url) {
    +

    + GSoC: GitHub Checks API 项目第一阶段总结 +

    + + + + +
    +
  • + + + + +
    + +
    + +

    在 Kubernetes 上使用 Argo 实现 CI/CD

    @@ -457,33 +484,6 @@ Argo/Argo CD/Argo CI Argo 项目有几个正在开发的项目仓库。Argo 是 - -
    - -
    - - -

    - KubeSphere DevOps 初体验,内置 Jenkins 引擎 -

    - - - - -
    -
    - - -
    diff --git a/wechat/index.xml b/wechat/index.xml index 3e95f4fb3c25ad5e23ee56af0ed70d8469f142c7..488b19d567cb10b39030b0c9f93e75f05d9becb9 100644 --- a/wechat/index.xml +++ b/wechat/index.xml @@ -6,11 +6,26 @@ Recent content in Wechats on Jenkins 中文社区 Hugo -- gohugo.io zh-CN - Wed, 05 Aug 2020 00:00:00 +0000 + Fri, 07 Aug 2020 00:00:00 +0000 + + GSoC: GitHub Checks API 项目第一阶段总结 + https://jenkins-zh.cn/wechat/articles/2020/08/2020-08-07-github-checks-api-plugin-project-coding-phase-1/ + Fri, 07 Aug 2020 00:00:00 +0000 + + https://jenkins-zh.cn/wechat/articles/2020/08/2020-08-07-github-checks-api-plugin-project-coding-phase-1/ + 这篇博客将介绍 GSoC 项目 GitHub Checks API Plugin 在一阶段的相关进展。 +简单来说,GitHub Checks API 就是一套可高度定制化接受 CI 报告的接口。 CI 工具可以通过该接口反馈信息给特定的 Pull Request,随后,用户便可以直接在 GitHub 的 UI 界面上直观的浏览 CI 报告。 +更激动人心的是,它可以针对指定的代码行进行注释,这类似于开发者平时在代码审查时留下的评论。 +同时,在 Jenkins 这边,Warnings Next Generation Plugin 能通过源代码视图实现类似的功能。 +因此,通过使用 GitHub Checks API 将这些信息直接反馈给 GitHub 能使 Jenkins 对 GitHub 用户更加友好。 +阶段一实现的相关特性 在过去的一个月里,我们团队的工作主要集中在 General Checks API 和 GitHub Checks API 的实现上。 +General Checks API 尽管 General Checks API 是基于 GitHub Checks API 的语义实现的,我们仍然希望能提供这样的泛化接口为其他平台的相关概念做好准备,例如:GitLab 上的 Commit Status API。 在今后,我们欢迎所有人贡献针对这些平台的相关实现。 + + 在 Kubernetes 上使用 Argo 实现 CI/CD https://jenkins-zh.cn/wechat/articles/2020/08/2020-08-05-ci-cd-with-argo-on-kubernetes/ diff --git a/wechat/page/10/index.html b/wechat/page/10/index.html index 0b40cec0cf32740dc57404a2e39689f6d12e5182..124cebb085694fe54859c1a6562ea23e377ecc14 100644 --- a/wechat/page/10/index.html +++ b/wechat/page/10/index.html @@ -44,7 +44,7 @@ - + @@ -217,6 +217,33 @@ var trackOutboundLink = function(id, url) {
    +

    + Jenkins 可视化阶段视图的改进 +

    + + + + +
    +
    + + + + +
    + +
    + +

    持续测试的那些事

    @@ -454,33 +481,6 @@ var trackOutboundLink = function(id, url) { - -
    - -
    - - -

    - 让我们庆祝 Jenkins 对 Java 11的支持 -

    - - - - -
    -
    - - -
    diff --git a/wechat/page/11/index.html b/wechat/page/11/index.html index 7ebb609f708896f73771a9868200430e49618b72..ead2f78ceae24ed2264003aed0d71ed0c8210c9c 100644 --- a/wechat/page/11/index.html +++ b/wechat/page/11/index.html @@ -44,7 +44,7 @@ - + @@ -217,6 +217,33 @@ var trackOutboundLink = function(id, url) {
    +

    + 让我们庆祝 Jenkins 对 Java 11的支持 +

    + + + + +
    +
    + + + + +
    + +
    + +

    持续交付落地实践工作坊

    @@ -454,33 +481,6 @@ var trackOutboundLink = function(id, url) { - -
    - -
    - - -

    - 还在苦恼不会写 Jenkins 流水线?来场工作坊! -

    - - - - -
    -
    - - -
    diff --git a/wechat/page/12/index.html b/wechat/page/12/index.html index 553b647ff6cea45b977cf56903d29b8eb8ff7a03..2d52cc2c828b165db3d914deb9b823cd591fde0c 100644 --- a/wechat/page/12/index.html +++ b/wechat/page/12/index.html @@ -44,7 +44,7 @@ - + @@ -217,6 +217,33 @@ var trackOutboundLink = function(id, url) {
    +

    + 还在苦恼不会写 Jenkins 流水线?来场工作坊! +

    + + + + +
    +
    + + + + +
    + +
    + +

    在线分享 - 作为一名开源贡献者是如何使用 GitHub 的?

    @@ -454,33 +481,6 @@ var trackOutboundLink = function(id, url) { - -
    - -
    - - -

    - 转载规范及声明 -

    - - - - -
    -
    - - -
    diff --git a/wechat/page/13/index.html b/wechat/page/13/index.html index 525d16863076bfb93db733a2d3dc9dfff4da9b26..c1038b5c70e4a1b004562515908465f92d3930d5 100644 --- a/wechat/page/13/index.html +++ b/wechat/page/13/index.html @@ -44,7 +44,7 @@ - + @@ -217,6 +217,33 @@ var trackOutboundLink = function(id, url) {
    +

    + 转载规范及声明 +

    + + + + +
    +
    + + + + +
    + +
    + +

    从 Jenkins 到 Jenkins X

    @@ -454,33 +481,6 @@ var trackOutboundLink = function(id, url) { - -
    - -
    - - -

    - Jenkins 插件开发之旅:两天内从 idea 到发布(上篇) -

    - - - - -
    -
    - - -
    diff --git a/wechat/page/14/index.html b/wechat/page/14/index.html index fcba51b774d4d995172448e4e5397446d93e6774..e6ff9e18a00620d8a28f4952aedd68d7e95ebdbb 100644 --- a/wechat/page/14/index.html +++ b/wechat/page/14/index.html @@ -44,7 +44,7 @@ - + @@ -217,6 +217,33 @@ var trackOutboundLink = function(id, url) {
    +

    + Jenkins 插件开发之旅:两天内从 idea 到发布(上篇) +

    + + + + +
    +
    + + + + +
    + +
    + +

    应该使用什么 CI/CD 工具?

    @@ -454,33 +481,6 @@ var trackOutboundLink = function(id, url) { - -
    - -
    - - -

    - AIOps:DevOps 的未来 -

    - - - - -
    -
    - - -
    diff --git a/wechat/page/15/index.html b/wechat/page/15/index.html index 1a65f1a3bf4c3555b3232684ea4b8f0cbdfbf85a..d8b480dd7ab39ffd528e80996f4322c0084259b8 100644 --- a/wechat/page/15/index.html +++ b/wechat/page/15/index.html @@ -44,7 +44,7 @@ - + @@ -217,6 +217,33 @@ var trackOutboundLink = function(id, url) {
    +

    + AIOps:DevOps 的未来 +

    + + + + +
    +
    + + + + +
    + +
    + +

    使用 Zabbix 监控 Jenkins

    @@ -454,33 +481,6 @@ var trackOutboundLink = function(id, url) { - -
    - -
    - - -

    - 为 Continuous Delivery Foundation 的成立感到兴奋 -

    - - - - -
    -
    - - -
    diff --git a/wechat/page/16/index.html b/wechat/page/16/index.html index 92eba183b12ac21f3403f486578009f41661095e..31366b28618390fabc2d4019b21f37cd06d90988 100644 --- a/wechat/page/16/index.html +++ b/wechat/page/16/index.html @@ -44,7 +44,7 @@ - + @@ -217,6 +217,33 @@ var trackOutboundLink = function(id, url) { +
    + + + + +
    + +
    + +

    MPL - 模块化的流水线库

    @@ -454,38 +481,6 @@ var trackOutboundLink = function(id, url) { - -
    - -
    - - -

    - Jenkins 中文社区邀您来上海共同参与2019年的国际开源盛宴 -

    - - - - -
    -
    - - -
    diff --git a/wechat/page/17/index.html b/wechat/page/17/index.html index c975360c6818b0779f444ded452ea5d469208a25..6e898208de52dbce5814b0cd2e7e0cc2150e63fc 100644 --- a/wechat/page/17/index.html +++ b/wechat/page/17/index.html @@ -216,6 +216,38 @@ var trackOutboundLink = function(id, url) {
    +

    + Jenkins 中文社区邀您来上海共同参与2019年的国际开源盛宴 +

    + + + + +
    +
    + + + + +
    + +
    + +

    Jenkins 中文语言包

    @@ -453,33 +485,6 @@ var trackOutboundLink = function(id, url) { - -
    - -
    - - -

    - 在 VS Code 中校验 Jenkinsfile -

    - - - - -
    -
    - - -
    diff --git a/wechat/page/18/index.html b/wechat/page/18/index.html index 086f32734bb1390109fabbe45192d9377ede54f1..0293cff0f5347dde79e7e55d193f472128029f3f 100644 --- a/wechat/page/18/index.html +++ b/wechat/page/18/index.html @@ -216,6 +216,33 @@ var trackOutboundLink = function(id, url) {
    +

    + 在 VS Code 中校验 Jenkinsfile +

    + + + + +
    +
    + + + + +
    + +
    + +

    在安全防火墙内通过 WebHook 触发构建

    diff --git a/wechat/page/2/index.html b/wechat/page/2/index.html index b1a1ac19efd7f41805a72a95dc222e875391135a..20a900907f3ecd8ff6a85fab370b6a8685f6fb7f 100644 --- a/wechat/page/2/index.html +++ b/wechat/page/2/index.html @@ -44,7 +44,7 @@ - + @@ -217,6 +217,33 @@ var trackOutboundLink = function(id, url) {
    +

    + KubeSphere DevOps 初体验,内置 Jenkins 引擎 +

    + + + + +
    +
    + + + + +
    + +
    + +

    使用 Python 制作酷炫多彩的 Jenkins 插件词云图

    @@ -454,33 +481,6 @@ var trackOutboundLink = function(id, url) { - -
    - -
    - - -

    - Jenkins agent Docker 镜像重新命名了,你知道吗? -

    - - - - -
    -
    - - -
    diff --git a/wechat/page/3/index.html b/wechat/page/3/index.html index 18494d6cccb985a281c872c1be5e707eee25d73d..17664da7b441e8799dcfa8799ef522a08dafacce 100644 --- a/wechat/page/3/index.html +++ b/wechat/page/3/index.html @@ -44,7 +44,7 @@ - + @@ -217,6 +217,33 @@ var trackOutboundLink = function(id, url) {
    +

    + Jenkins agent Docker 镜像重新命名了,你知道吗? +

    + + + + +
    +
    + + + + +
    + +
    + +

    致广大Jenkins 中文社区关注者的感谢信

    @@ -454,33 +481,6 @@ var trackOutboundLink = function(id, url) { - -
    - -
    - - -

    - Kubernetes 构造可自由扩展的 Jenkins -

    - - - - -
    -
    - - -
    diff --git a/wechat/page/4/index.html b/wechat/page/4/index.html index 2dcf97a53f8e5a49d2ddf19aa7966def5c587d47..ff1d9f08686d8f81b270c3d8160625165d0aa4e6 100644 --- a/wechat/page/4/index.html +++ b/wechat/page/4/index.html @@ -44,7 +44,7 @@ - + @@ -217,6 +217,33 @@ var trackOutboundLink = function(id, url) {
    +

    + Kubernetes 构造可自由扩展的 Jenkins +

    + + + + +
    +
    + + + + +
    + +
    + +

    Jenkins 每周版更新

    @@ -454,33 +481,6 @@ var trackOutboundLink = function(id, url) { - -
    - -
    - - -

    - Jenkins 长期支持版更新 -

    - - - - -
    -
    - - -
    diff --git a/wechat/page/5/index.html b/wechat/page/5/index.html index be976b290b92626db51e6498135a0d88b6beb008..5ff4ac04bf30b12ce1a54f37de9498e92c97c26a 100644 --- a/wechat/page/5/index.html +++ b/wechat/page/5/index.html @@ -44,7 +44,7 @@ - + @@ -217,6 +217,33 @@ var trackOutboundLink = function(id, url) {
    +

    + Jenkins 长期支持版更新 +

    + + + + +
    +
    + + + + +
    + +
    + +

    流水线编撰 SIG 公告

    @@ -454,33 +481,6 @@ var trackOutboundLink = function(id, url) { - -
    - -
    - - -

    - 2019 年 Google 编程之夏活动报告 -

    - - - - -
    -
    - - -
    diff --git a/wechat/page/6/index.html b/wechat/page/6/index.html index a44c431bd828e4de200370ac3bea7426aaf4d264..96e784baaf00b2dfa6620d0355325eefa127a646 100644 --- a/wechat/page/6/index.html +++ b/wechat/page/6/index.html @@ -44,7 +44,7 @@ - + @@ -217,6 +217,33 @@ var trackOutboundLink = function(id, url) {
    +

    + 2019 年 Google 编程之夏活动报告 +

    + + + + +
    +
    + + + + +
    + +
    + +

    Happy Second Birthday Jenkins X!

    @@ -454,33 +481,6 @@ var trackOutboundLink = function(id, url) { - -
    - -
    - - -

    - 使用 Docker 全自动构建 Java 应用 -

    - - - - -
    -
    - - -
    diff --git a/wechat/page/7/index.html b/wechat/page/7/index.html index ada3321b6da5a0db79261b218bfa9752e2edc7a8..8a60df8e5b96e2e98d1eb57cbc74610a67c408d3 100644 --- a/wechat/page/7/index.html +++ b/wechat/page/7/index.html @@ -44,7 +44,7 @@ - + @@ -217,6 +217,33 @@ var trackOutboundLink = function(id, url) {
    +

    + 使用 Docker 全自动构建 Java 应用 +

    + + + + +
    +
    + + + + +
    + +
    + +

    Jenkins 健康检查顾问

    @@ -454,33 +481,6 @@ var trackOutboundLink = function(id, url) { - -
    - -
    - - -

    - Jenkins 2019 年 Board 和 Officer positions 选举更新 -

    - - - - -
    -
    - - -
    diff --git a/wechat/page/8/index.html b/wechat/page/8/index.html index 547e29742abedcc54cfb0a7bed40664026243d96..f4e7367674d2de9079402c7529df898e43132d4e 100644 --- a/wechat/page/8/index.html +++ b/wechat/page/8/index.html @@ -44,7 +44,7 @@ - + @@ -217,6 +217,33 @@ var trackOutboundLink = function(id, url) {
    +

    + Jenkins 2019 年 Board 和 Officer positions 选举更新 +

    + + + + +
    +
    + + + + +
    + +
    + +

    Jenkins 插件中心国内镜像源发布

    @@ -454,33 +481,6 @@ var trackOutboundLink = function(id, url) { - -
    - -
    - - -

    - 2019 DEVOPS WORLD和JENKINS WORLD 获奖者公布 -

    - - - - -
    -
    - - -
    diff --git a/wechat/page/9/index.html b/wechat/page/9/index.html index aad7295cd819fbc799fc0307b576f1b1d81c932e..ecdc29e4c00febd3dcb713cb273f45810b119813 100644 --- a/wechat/page/9/index.html +++ b/wechat/page/9/index.html @@ -44,7 +44,7 @@ - + @@ -217,6 +217,33 @@ var trackOutboundLink = function(id, url) {
    +

    + 2019 DEVOPS WORLD和JENKINS WORLD 获奖者公布 +

    + + + + +
    +
    + + + + +
    + +
    + +

    React Plugin Template,让你可以使用 React 来编写 Jenkins 插件

    @@ -454,33 +481,6 @@ var trackOutboundLink = function(id, url) { - -
    - -
    - - -

    - Jenkins 可视化阶段视图的改进 -

    - - - - -
    -
    - - -