
CI
文章平均质量分 50
董武明
这个作者很懒,什么都没留下…
展开
-
jenkins job description safe html font color设置后无效
jenkins job description safe html font color设置后无效查下了原因是以为 最新版本的插件 antisamy-markup-formatter.jpi 为了安全更新导致的:将 Jenkins 升级到最新的 LTS 版本 2.263.1 后,将 HTML 放入工作描述或构建描述以某种方式在服务器端进行处理并删除一些内容,例如:“字体”标签被完全删除影响:丢失所有格式(颜色、字体大小、字体效果)workarround是将字体设置为样式来源: MESSAGE原创 2022-05-16 11:04:36 · 918 阅读 · 0 评论 -
mac pip install xxx ld:unknown option: --no-as-needed or library not found for -lssl
pip install qtdigest-cffild: unknown option: --no-as-needed clang: error: linker command failed with exit code 1 (use -v to see invocation) error: command 'clang' failed with exit status 1因为LD加了参数–no-as-needed 删除即可:echo $LDFLAGS-Xlinker --no-as-n原创 2020-08-31 16:17:49 · 949 阅读 · 0 评论 -
安装MAC 版的最新jenkins-1.635.pkg 后 如何重启jenkins 及命令行操作jenkins
重启Jenkins:java -jar war/WEB-INF/jenkins-cli.jar -s http://172.16.28.103:8080/ restartJenkins CLIYou can access various features in Jenkins through a command-line tool. See the Wi原创 2015-10-29 18:40:29 · 2952 阅读 · 0 评论 -
git log --format="%an"
表格列出一些 format 支援的選項:選項選項的說明%H該更新的SHA1雜湊值%h該更新的簡短SHA1雜湊值%T存放該更新的根目錄的Tree物件的SHA1雜湊值%t存放該更新的根目錄的Tree物件的簡短SHA1雜湊值%P該更新的父更新的SHA1雜湊值%p該更新的父更新的簡短转载 2016-04-15 17:25:54 · 3733 阅读 · 0 评论 -
Gitlab 修改root用户密码
Gitlab 修改root用户密码Log into your server with root privileges. Then start a Ruby on Rails console.Start the console with this command:gitlab-rails console productionWait until the console has loaded.Ther原创 2016-04-21 18:13:23 · 4666 阅读 · 1 评论 -
Eslint静态代码检查
简介 ESLint是一个以可扩展、每条规则独立、不内置编码风格为理念编写一个 lint 工具。 主要的特点有:默认规则包含所有 JSLint、JSHint 中存在的规则,易迁移 规则可配置性高:可设置「警告」、「错误」两个 error 等级,或者直接禁用 包含代码风格检测的规则(可以丢掉 JSCS 了) 支持插件扩展、自定义规则 起步 安装$ npm install -g eslint转载 2016-08-24 18:46:47 · 3582 阅读 · 0 评论 -
SonarQube的安装、配置与使用
SonarQube是管理代码质量一个开放平台,可以快速的定位代码中潜在的或者明显的错误,下面将会介绍一下这个工具的安装、配置以及使用。准备工作;1、jdk(不再介绍)2、sonarqube:http://www.sonarqube.org/downloads/3、SonarQube+Scanner:https://sonarsource.bintray.com/Distribution/sonar-转载 2016-12-02 17:33:21 · 841 阅读 · 0 评论