12 2020 档案

摘要:###pipeline编写实例与注意事项 pipeline{ agent any // 设置Jenkins调用节点,any表示master和slave都可 stages{ // 里面可以填充多个stage stage('clean even'){ steps{ sh 'rm -rf deviceAc 阅读全文
posted @ 2020-12-24 11:46 小米渣渣 阅读(2592) 评论(0) 推荐(0)
摘要:一、参考资料 https://www.cnblogs.com/nickchen121/p/11517441.html 二、VS安装GO插件失败 使用go mod代理进行安装,https://goproxy.io是一个国内代理,执行下面命令 go env -w GO111MODULE=on go en 阅读全文
posted @ 2020-12-18 11:47 小米渣渣 阅读(936) 评论(0) 推荐(0)
摘要:一、Jenkins定时构建 定时构建语法: 第一个*表示分钟,取值0~59 第二个*表示小时,取值0~23 第三个*表示一个月的第几天,取值1~31 第四个*表示第几月,取值1~12 第五个*表示一周中的第几天,取值0~7,其中0和7代表的都是周日 举例说明: 每隔5分钟构建一次 H/5 * * * 阅读全文
posted @ 2020-12-16 17:34 小米渣渣 阅读(219) 评论(0) 推荐(0)
摘要:一、pytest.ini文件配置 首先pytest是从pytest.ini中读取log_cli配置的,默认是关闭的。首先需要在执行文件根目录配置pytest.ini文件 [pytest]log_cli = 1log_cli_level = DEBUGlog_cli_date_format = %Y- 阅读全文
posted @ 2020-12-16 11:44 小米渣渣 阅读(3402) 评论(1) 推荐(0)
摘要:一、ubuntu安装pip sudo apt-get install python3-pip 二、依赖包不存在 sudo apt-get -f install(sudo apt-get -f install --fix-missing) 安装mysql-community-server 上述操作需要 阅读全文
posted @ 2020-12-02 17:25 小米渣渣 阅读(6267) 评论(0) 推荐(0)