ssh 登陆时提示 Permission denied (publickey,gssapi-keyex,gssapi-with-mic) 问题: ssh 登陆时提示 Permission denied (publickey,gssapi-keyex… Read More
windows 开发电脑采用 docker 发布到 linux docker 服务器的脚本 问题: 解决: 本地windows 电脑执行 deploy.bat 把 jar 上传到服务器去… Read More
docker update -m 1G mysql8 问题: [root@baccarat ~]# docker update -m 1G mysql8 Error response from daemon: Cannot update container ed135d27bc84bcb2c95ad394eb504807d4da500148e52c85c4a882a4d43b1f5c: Memory limit should be smaller than already set memoryswap limit, update the memoryswap at the same time 12 [root@baccarat ~]# docker update -m 1G mysql8Error response from daemon: Cannot update container ed135d27bc84bcb2c95ad394eb504807d4da500148e52c85c4a882a4d43b1f5c: Memory limit should be smaller than already set memoryswap limit, update the memoryswap at the same time 解决: … Read More
azure DevOps pipeline & sonar 集成备忘 - job: test displayName: 单元测试 dependsOn: dockerimage steps: - task: Maven@3 displayName: 'mvn clean test' inputs: mavenPomFile: 'src/std-provider/pom.xml' goals: test jacoco:report options: '-U -Dmaven.test.failure.ignore=true -Duser.timezone=GMT+8 -Duser.region=CN -Duser.language=zh' publishJUnitResults: true continueOnError: true timeoutInMinutes: 5 - task: SonarQubePrepare@4 inputs: SonarQube: 'sonar_56' scannerMode: 'Other' extraProperties: 'sonar.projectKey=com.telsafe:std-provider' - task: Maven@3 displayName: 'mvn sonar' inputs: mavenPomFile: 'src/std-provider/pom.xml' goals: sonar:sonar options: '-U' sonarQubeRunAnalysis: true continueOnError: true timeoutInMinutes: 5 - task: SonarQubePublish@4 inputs: pollingTimeoutSec: '300' 123456789101112131415161718192021222324252627282930 - job: test displayName: 单元测试 dependsOn: dockerimage steps: - task: Maven@3 displayName: 'mvn clean test' inputs: mavenPomFile: 'src/std-provider/pom.xml' goals: test jacoco:report options: '-U -Dmaven.test.failure.ignore=true -Duser.timezone=GMT+8 -Duser.region=CN -Duser.language=zh' publishJUnitResults: true continueOnError: true timeoutInMinutes: 5 - task: SonarQubePrepare@4 inputs: SonarQube: 'sonar_56' scannerMode: 'Other' extraProperties: 'sonar.projectKey=com.telsafe:std-provider' - task: Maven@3 displayName: 'mvn sonar' inputs: mavenPomFile: 'src/std-provider/pom.xml' goals: sonar:sonar options: '-U' sonarQubeRunAnalysis: true continueOnError: true timeoutInMinutes: 5 - task: SonarQubePublish@4 inputs: pollingTimeoutSec: '300' &… Read More