Jenkins configuring email notifications
After the continuous integration deployment based on jenkins is completed, the task construction is completed, and the test results need to be notified to relevant personnel. Here is how to configure email notification in jenkins.
1, Install mail plugin System management - > management plug-in - > optional plug-in, select email extension ...
Posted by supratwinturbo on Wed, 09 Mar 2022 13:12:37 +0100
Gitlab+maven+jenkins integrated release micro project (test environment)
1, Premise: Prepare three servers: 1.Gitlab: IP 192.168.83.140 2.Jenkins+maven: IP 192.168.83.141 3.Tomcat: IP 192.168.83.142 Three servers turn off the firewall:
systemctl stop filewalld
setenforce 0
2, Gitlab installation 192.168.83.140 1. Deploy docker (1) Install docker using yum or up2date
yum -y install docker
(2) Start docker
...
Posted by pvolpe1 on Tue, 08 Mar 2022 01:06:45 +0100
Jenkins+Docker+SpringCloud microservice continuous integration and optimization
catalogue
1.Jenkins+Docker+SpringCloud deployment scheme optimization
2. Design the construction parameters of Jenkins cluster project
3. Multi server remote publishing of microservices
4.Nginx+Zuul cluster realizes high availability gateway
1.Jenkins+Docker+SpringCloud deployment scheme optimization
Problems in the above deployment sc ...
Posted by ticallian on Sun, 06 Mar 2022 20:18:40 +0100
Selenium and Appium Python automated tests generate HTML test reports
Just as you are in the brand new TestProject Python SDK(Part 1 and Part 2 )As you may have read in the previous article on, the SDK will generate beautiful HTML test reports and automatically publish them to the TestProject platform for you without other configuration (you can also download them as PDF files). But did you know that reporting ...
Posted by khaitan_anuj on Fri, 04 Mar 2022 06:42:40 +0100
Application of spring cloud production environment operated by Jenkins
1, Jenkins+Docker+SpringCloud continuous integration process
Text flow
Developers submit their code to the Gitlab code warehouse every day.
Jenkins pulls the project source code from Gitlab, compiles it and makes it into a jar package, then builds it into a Docker image, and uploads the image to the private warehouse of Harbor. ...
Posted by vund0 on Thu, 03 Mar 2022 08:28:39 +0100
Jenkins microservice continuous integration Xi (Spring Cloud microservice II)
1, Jenkins+Docker+SpringCloud continuous integration process description
General process description:
Developers submit their code to the Gitlab code warehouse every day.Jenkins pulls the project source code from Gitlab, compiles it and makes it into a jar package, then builds it into a Docker image, and uploads the image to the privat ...
Posted by kristofferlc on Fri, 25 Feb 2022 07:10:21 +0100
Jenkins creates maven project
1. Introduction to maven
https://mirrors.tuna.tsinghua.edu.cn/apache/maven/
2. Install mvn
# java -version
java version "1.8.0_211"
Java(TM) SE Runtime Environment (build 1.8.0_211-b12)
Java HotSpot(TM) 64-Bit Server VM (build 25.211-b12, mixed mode)
# cd /data/
# wget https://mirrors.tuna.tsinghua.edu.cn/apache/maven/maven-3/3.6.1/b ...
Posted by ale1981 on Sun, 20 Feb 2022 18:19:01 +0100
[continuous integration and delivery] Jenkins environment construction: Jenkins introduction, download and installation
preface
I always wanted to learn automated testing, but I didn't take action. I studied piecemeal in my spare time and recorded 20210424.
11. Continuous integration and delivery
Jenkins environment constructionProject environment configurationEmail notificationScheduled project execution
Jenkins introduction
Jenkins is an open s ...
Posted by LanHorizon on Sat, 19 Feb 2022 05:22:38 +0100
Jenkins automation tutorial: installing Jenkins under Linux
Installing Jenkins in Linux Environment
First, you must install the java runtime environment before installing Jenkins
Download JDK
After entering the page, download the 64 bit package, jdk-8u181-linux-x64 tar. GZ and jdk-8u181-linux-x64 Rpm is OK. The following will introduce the installation methods of the two packages respectively. Select ...
Posted by dreglo on Tue, 15 Feb 2022 08:02:44 +0100
Jenkins continuous integration environment construction IV (different project construction types of Jenkins: free style, Maven and Pipeline)
1. Construction type of Jenkins project
There are many types of automatic construction projects in Jenkins, including the following three types:
FreeStyle ProjectMaven ProjectPipeline Project
In fact, each type of construction can complete the same construction process and results, but there are differences in operation mode and flexib ...
Posted by Ryodox on Fri, 11 Feb 2022 21:46:25 +0100