Continuous integration and continuous delivery

1. Introduction to Git Official website learning address http://git-scm.com/book/zh/v2 Git features: speedSimple designStrong support for nonlinear development mode (allowing thousands of branches of parallel development)Fully distributedAbility to efficiently manage large-scale projects like Linux kernel (speed and data volume) Since i ...

Posted by jimmyt1988 on Thu, 10 Feb 2022 06:37:39 +0100

python automation continuous integration: 4 Jenkins integrated APP source code packaging, deployment and automated testing

I Use the interface to configure task mode integration 1.APP source code packaging principle Source code github address: https://github.com/princeqjzh/AndroidSampleApp 1.1 packaging dependent environment Installation: SDK (this example takes windows system as an example. SDK is installed under Windows system, which has been explained in t ...

Posted by nadinengland on Tue, 08 Feb 2022 20:08:27 +0100

Jenkins basic knowledge, java environment construction and Gitlab installation in Chapter 1 of Jenkins operation

preface 1, Continuous integration 1. Software development life cycle Software development life cycle SDLC, a collection of plans, development (code landing), testing (function test / stress test / unit test / release online) - > collect user feedback ----- > upgrade 2. Software development waterfall model Waterfall mode ...

Posted by suspect on Mon, 07 Feb 2022 20:05:03 +0100

GitLab + Jenkins + ACK Automated Deployment Scheme

From a practical point of view, this article introduces how to combine our commonly used GitLab and Jenkins to realize the automatic deployment of the project through K8s. The production architecture diagram currently used by the company is the focus of this explanation, as shown in the figure:The tools and technologies involved in this paper i ...

Posted by student101 on Mon, 07 Feb 2022 04:10:23 +0100

Centos quickly installs Jenkins and accesses it through the nginx agent

Here are some points to note during installation Install according to the official website documents Remember! First, the documents are official documents. Please don't read Baidu articles at will. For those that are well written and poorly written, it's best to look at the official website: Jenkins official website: https://www.jenkins.io ...

Posted by xterra on Tue, 01 Feb 2022 16:13:58 +0100

From creating a server to building an intranet penetration server

Create a server to build an intranet penetration server After the project is developed, how to create a new server and deploy the project to the server? This requires the installation of some basic tools, such as jdk, maven and Jenkins to realize automatic deployment; In addition, you can build some auxiliary tools, such as nexus(maven private ...

Posted by kida462 on Mon, 31 Jan 2022 07:06:06 +0100

Jenkins+Maven+Git automatic deployment process (super comprehensive from environment construction to deployment)

Note: the function of this process is that as long as we upload the code to the GIT platform, we don't have to worry about it. jenkins can automatically publish our git original code compilation test deployment to the production environment. We don't have to pack the jar package ourselves every time and then pull it to the linux environment Jav ...

Posted by BLottman on Sun, 23 Jan 2022 05:05:25 +0100

jenkins enables automatic deployment

jenkins enables automatic deployment (CD/CI) Execution flow chart I. environment server configuration 1. The following environments need to be installed on the server: 1) Install jdk-1.8 2) Install maven-3.6 one 3) Installing git-2.34 4) Install node-16.13 1 (optional, depending on the deployment method) 5)sonarQube-6.7.4 2. After installa ...

Posted by balkar on Wed, 05 Jan 2022 13:55:40 +0100

Jenkins + Groovy script = efficient ✔✔ (pure dry goods)

1, Configuring Groovy in IntelliJ IDEA The mode of writing script in Jenkinsfile is to verify the script in IDE and then copy the code to Jenkinsfile. For writing Groovy script in IntelliJ IDEA, please refer to this article IntelliJ IDEA configuring Groovy tutorial 2, Using Groovy scripts in Pipeline 1. Use the method provided by the d ...

Posted by banacan on Sun, 02 Jan 2022 22:56:44 +0100

Jenkins - continuous integration and Jenkins installation and deployment (plug-in + user rights + credentials + Maven packaging)

Continuous integration and Jenkins introduction software development life cycle Software Development Life Cycle, also known as SDLC (Software Development Life Cycle), is a collection of planning, development, testing and deployment processes As shown in the figure below requirement analysis This is the first stage of the life cycle ...

Posted by vahidf on Thu, 30 Dec 2021 20:17:07 +0100