摘要: 1.git-runner安装(docker中安装) docker run -d --name gitlab-runner --restart always -v /var/gitlab-runner:/etc/gitlab-runner -v /var/run/docker.sock:/var/ru 阅读全文
posted @ 2021-04-12 15:58 小米渣渣 阅读(441) 评论(0) 推荐(0) 编辑
摘要: 1.在 /etc/docker/daemon.json 中写入如下内容(默认没有该文件) vim /etc/docker/daemon.json 2.写入下面内容,并保存退出 { "registry-mirrors": [ "https://docker.mirrors.ustc.edu.cn/", 阅读全文
posted @ 2021-04-07 11:14 小米渣渣 阅读(526) 评论(0) 推荐(0) 编辑
摘要: 1. 安装(centos版本) tcl&&expect安装 wget http://nchc.dl.sourceforge.net/sourceforge/tcl/tcl8.4.11-src.tar.gz tar xfvz tcl8.4.11-src.tar.gz cd tcl8.4.11/unix 阅读全文
posted @ 2021-04-01 15:05 小米渣渣 阅读(107) 评论(0) 推荐(0) 编辑
摘要: 1.安装pptpd [root@VM_0_6_centos etc]# yum install -y pptpd 2.对虚拟专用网络进行IP段分配 [root@VM_0_6_centos etc]# vim /etc/pptpd.conf localip 193.112.40.37 remoteip 阅读全文
posted @ 2021-04-01 14:55 小米渣渣 阅读(174) 评论(0) 推荐(0) 编辑
摘要: 1.fiddler设置 https://www.cnblogs.com/joshua317/p/8670923.html 2.HTTPrunner3.X中文文档 https://www.ontheway.cool/HttpRunner3DocsForCN/ 阅读全文
posted @ 2021-02-01 10:01 小米渣渣 阅读(172) 评论(0) 推荐(0) 编辑
摘要: 企业微信消息推送本质是向连接发送HTTP请求并发送消息 curl "https://qyapi.weixin.qq.com/cgi-bin/webhook/XXXXX" -H "Content-Type: application/json" -d '{"msgtype": "markdown","m 阅读全文
posted @ 2021-01-25 11:31 小米渣渣 阅读(1085) 评论(1) 推荐(0) 编辑
摘要: ###pipeline编写实例与注意事项 pipeline{ agent any // 设置Jenkins调用节点,any表示master和slave都可 stages{ // 里面可以填充多个stage stage('clean even'){ steps{ sh 'rm -rf deviceAc 阅读全文
posted @ 2020-12-24 11:46 小米渣渣 阅读(2252) 评论(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 小米渣渣 阅读(900) 评论(0) 推荐(0) 编辑
摘要: 一、Jenkins定时构建 定时构建语法: 第一个*表示分钟,取值0~59 第二个*表示小时,取值0~23 第三个*表示一个月的第几天,取值1~31 第四个*表示第几月,取值1~12 第五个*表示一周中的第几天,取值0~7,其中0和7代表的都是周日 举例说明: 每隔5分钟构建一次 H/5 * * * 阅读全文
posted @ 2020-12-16 17:34 小米渣渣 阅读(203) 评论(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 小米渣渣 阅读(3293) 评论(1) 推荐(0) 编辑