CN109240662B - Software development method based on cloud platform, equipment and medium - Google Patents

Software development method based on cloud platform, equipment and medium Download PDF

Info

Publication number
CN109240662B
CN109240662B CN201810901062.8A CN201810901062A CN109240662B CN 109240662 B CN109240662 B CN 109240662B CN 201810901062 A CN201810901062 A CN 201810901062A CN 109240662 B CN109240662 B CN 109240662B
Authority
CN
China
Prior art keywords
container
cloud platform
compiling
test
development
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Active
Application number
CN201810901062.8A
Other languages
Chinese (zh)
Other versions
CN109240662A (en
Inventor
黄友俊
李星
吴建平
李春辉
杜孟佳
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
CERNET Corp
Original Assignee
CERNET Corp
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by CERNET Corp filed Critical CERNET Corp
Priority to CN201810901062.8A priority Critical patent/CN109240662B/en
Publication of CN109240662A publication Critical patent/CN109240662A/en
Application granted granted Critical
Publication of CN109240662B publication Critical patent/CN109240662B/en
Active legal-status Critical Current
Anticipated expiration legal-status Critical

Links

Images

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F8/00Arrangements for software engineering
    • G06F8/30Creation or generation of source code
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F11/00Error detection; Error correction; Monitoring
    • G06F11/36Preventing errors by testing or debugging software
    • G06F11/3664Environments for testing or debugging software
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F11/00Error detection; Error correction; Monitoring
    • G06F11/36Preventing errors by testing or debugging software
    • G06F11/3668Software testing
    • G06F11/3672Test management
    • G06F11/3688Test management for test execution, e.g. scheduling of test suites
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F8/00Arrangements for software engineering
    • G06F8/40Transformation of program code
    • G06F8/41Compilation
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F8/00Arrangements for software engineering
    • G06F8/70Software maintenance or management
    • G06F8/71Version control; Configuration management

Landscapes

  • Engineering & Computer Science (AREA)
  • Theoretical Computer Science (AREA)
  • General Engineering & Computer Science (AREA)
  • Physics & Mathematics (AREA)
  • General Physics & Mathematics (AREA)
  • Software Systems (AREA)
  • Computer Hardware Design (AREA)
  • Quality & Reliability (AREA)
  • Computer Security & Cryptography (AREA)
  • Stored Programmes (AREA)

Abstract

The invention provides a software development method based on a cloud platform, the cloud platform, equipment and a medium. The method comprises the following steps: the cloud platform acquires project information and creates a project according to the project information; the cloud platform creates a plurality of tasks in the project, and completes the writing of codes according to the task selection development language, wherein one task corresponds to one development language, and the plurality of tasks comprise at least two different development languages; the cloud platform creates a compiling container, the codes are added into the compiling container, an independent compiling environment corresponding to the development language is generated according to the development language corresponding to the codes, and compiling of the codes is completed; the cloud platform creates a test container, adds the compiled codes into the test container, generates an independent test environment corresponding to the development language and completes the test of the codes; and packaging and releasing the codes which are compiled and tested by the cloud platform.

Description

Software development method based on cloud platform, equipment and medium
Technical Field
The invention relates to a software development method based on a cloud platform, the cloud platform, equipment and a medium.
Background
Code development is the basis of internet, computer technology. Developers can write codes by using different programming languages to meet various requirements of users so as to realize various functions of various application programs, software and the like. Common programming languages are for example: java, C language, C + +, Python, etc.
The current process of obtaining a final product (e.g., software) by a code development method is: the method comprises the steps that a user puts forward a demand, a developer writes a code according to the demand, then the code is packaged, a tester tests the code after the code is packaged, online deployment is carried out after the test is finished, and finally the whole demand is released. But for the development of more complex products, a number of different programming languages may be involved. For example, a complex product comprises a plurality of modules, wherein an algorithm module uses C + +, a business layer module uses java, a big data processing module uses scala, a service discovery related module uses go language, and a monitoring module uses python. Each module has a different compilation and deployment style for each language, it is difficult to deploy such a complex system, and each module has different compilation and runtime dependencies.
Therefore, for complex product development, the environment has no deployment standardization, each environment is different, the situation that the product development environment is not matched with the test environment or the production environment is easy to occur, developers need to communicate with and wait for the test environment repeatedly, and development time cost and complexity are increased.
Disclosure of Invention
Technical problem to be solved
For complex product development, the environment has no deployment standardization, each environment is different, the situation that the product development environment is not matched with the test environment or the production environment is easy to occur, developers need to communicate with the test environment repeatedly and wait, and development time cost and complexity are increased.
(II) technical scheme
In one aspect, the present invention provides a software development method based on a cloud platform, including: the cloud platform acquires project information and creates a project according to the project information; the cloud platform creates a plurality of tasks in the project, and completes the writing of codes according to the task selection development language, wherein one task corresponds to one development language, and the plurality of tasks comprise at least two different development languages; the cloud platform creates a compiling container, the codes are added into the compiling container, an independent compiling environment corresponding to the development language is generated according to the development language corresponding to the codes, and compiling of the codes is completed; the cloud platform creates a test container, adds the compiled codes into the test container, generates an independent test environment corresponding to the development language and completes the test of the codes; and packaging and releasing the codes which are compiled and tested by the cloud platform.
Optionally, the container is a Docker container.
Optionally, the creating, by the cloud platform, a compilation container, and adding the code into the compilation container to complete compilation of the code includes: creating a first mirror image, creating a first Docker container in the first mirror image, downloading and installing a compiler corresponding to the development language in the first Docker container, converting the code into a binary language through the compiler, and finishing compiling the code.
Optionally, the creating, by the cloud platform, a test container, and adding the compiled code into the test container to complete testing of the code, includes: creating a second mirror image, creating a second Docker container in the second mirror image, downloading and installing running test software corresponding to the development language in the second Docker container, configuring an environment, generating a software running test environment corresponding to the development language, and completing the running test of the code.
Optionally, the method further includes creating a warehouse by the cloud platform, storing the compiling container and the test container in the warehouse, and setting an access right for the compiling container and the test container.
Optionally, setting access rights to the compiling container and the testing container, including applying for the access rights through a cloud platform.
Optionally, the warehouse is a local Docker mirror warehouse or a Docker registry private warehouse.
In another aspect, the present invention further provides a cloud platform for software development, where the cloud platform includes: the project creating module is used for acquiring project information and creating projects according to the project information; the task creating module is used for creating a plurality of tasks in the project and selecting a development language according to the tasks to finish the writing of codes, wherein one task corresponds to one development language, and the plurality of tasks comprise at least two different development languages; the compiling module is used for creating a compiling container, adding the codes into the compiling container, generating an independent compiling environment corresponding to the development language according to the development language corresponding to the codes and finishing compiling the codes; the test module is used for creating a test container, adding the compiled codes into the test container, generating an independent test environment corresponding to the development language and completing the test of the codes; and the release module is used for packaging and releasing the codes which are compiled and tested.
In yet another aspect, the present invention provides an electronic device, comprising: a processor; a memory storing a computer executable program comprising the cloud platform based software development method as described above.
In yet another aspect, the present invention provides a computer-readable storage medium having stored thereon a computer program comprising the cloud platform-based software development method as described above.
(III) advantageous effects
According to the method, the container is created in the cloud platform, the code is added into the container, and compiling and testing of the code are achieved through the container. And the invention has established a plurality of tasks, a task corresponds to a development language, these a plurality of tasks include at least two different development languages, therefore need to establish a plurality of compiling containers and add the code corresponding to these a plurality of tasks while finishing the compiling process, also need to establish a plurality of test containers while finishing the testing process. It should be noted that, the container herein may add and support codes written by different development languages, and the container are independent from each other, one compiling container is used to implement compiling of codes of one task, one testing container is used to implement testing of codes of the compiled one task, when multiple tasks exist simultaneously, an independent compiling environment is generated in each compiling container, an independent testing environment is generated in each testing container, and each compiling container and each testing container do not affect each other, and each compiling function and each testing function are independently completed. Therefore, the independent compiling environment and the independent testing environment are formed by the container, the condition that the product development environment is not matched with the testing environment and developers need to communicate and wait repeatedly according to different development languages in the prior art is avoided, the development process is simplified, and the complexity is reduced.
Drawings
For a more complete understanding of the present invention, and the advantages thereof, reference is now made to the following descriptions taken in conjunction with the accompanying drawings, in which:
FIG. 1 schematically illustrates a flow diagram of a cloud platform based software development method according to an embodiment of the invention;
figure 2 schematically shows a block diagram of a cloud platform according to an embodiment of the invention,
fig. 3 schematically shows a block diagram of an electronic device according to an embodiment of the invention.
Detailed Description
In order to make the objects, technical solutions and advantages of the present invention more apparent, the present invention is described in further detail below with reference to specific embodiments and the accompanying drawings.
The invention provides a software development method based on a cloud platform, and referring to fig. 1, the method comprises the following steps: s1, the cloud platform acquires project information and creates projects according to the project information; s2, the cloud platform creates a plurality of tasks in the project, and completes the writing of codes according to the tasks by selecting development languages, wherein one task corresponds to one development language, and the tasks comprise at least two different development languages; s3, the cloud platform creates a compiling container, the codes are added into the compiling container, an independent compiling environment corresponding to the development language is generated according to the development language corresponding to the codes, and compiling of the codes is completed; s4, the cloud platform creates a test container, the compiled codes are added into the test container, an independent test environment corresponding to the development language is generated, and the test of the codes is completed; and S5, packaging and releasing the code which is compiled and tested by the cloud platform.
According to the method, the container is created in the cloud platform, the code is added into the container, and compiling and testing of the code are achieved through the container. And the invention has established a plurality of tasks, a task corresponds to a development language, these a plurality of tasks include at least two different development languages, therefore need to establish a plurality of compiling containers and add the code corresponding to these a plurality of tasks while finishing the compiling process, also need to establish a plurality of test containers while finishing the testing process. It should be noted that, the container herein may add and support codes written by different development languages, and the container are independent from each other, one compiling container is used to implement compiling of codes of one task, one testing container is used to implement testing of codes of the compiled one task, when multiple tasks exist simultaneously, an independent compiling environment is generated in each compiling container, an independent testing environment is generated in each testing container, and each compiling container and each testing container do not affect each other, and each compiling function and each testing function are independently completed.
It should be noted that the above-mentioned independent compiling environment and independent testing environment refer to that the compiling environment or testing environment generated in the container does not depend on the host's own system, whereas the deployment of the compiling environment or testing environment in the prior art needs to set environment variables in the host system, where the environment variables refer to parameters used in the operating system to specify the operating system operating environment. For example, for a Windows XP system, an "environment variable" window needs to be opened for setting in "computer properties".
Therefore, the independent compiling environment and the independent testing environment are formed by utilizing the container, the problem that the product development environment is not matched with the testing environment easily in the prior art according to different development languages is avoided, the unmatched condition is just because the development environment, the testing environment and the like are deployed depending on the system of the host, and various problems can occur due to the fact that the system, the version and the like of the host are not consistent in many times, and the problem that developers need to communicate with and wait for the testers repeatedly is solved, the development process is simplified, and the complexity is reduced.
Specifically, the cloud platform acquires project information, and creates a project according to the project information, where the project information may be project information meeting user requirements, and the project may be a software development project.
The cloud platform creates tasks in each project, in a software development project, one piece of software usually carries a plurality of functions, and the created tasks can be a plurality of functions of the software or a plurality of application modules, such as a data processing module and a business layer module. And selecting a development language according to the tasks to finish the writing of the codes, wherein one task corresponds to one development language, and the tasks comprise at least two different development languages. For example, the data processing module uses code written in Java and the business layer module uses code written in Ruby.
The cloud platform creates a compiling container which is a Docker container, and as can be understood by those skilled in the art, the Docker container is an open-source application container engine, and the containers completely use a sandbox mechanism and do not have any interface with each other. And is independent of any language, framework or packaging system, that is, adding codes written by different development languages can be realized in the Docker container, for example, codes written by Java can be added in the compiling container a, codes written by C language can be added in the compiling container B, and codes written by Ruby can be added in the compiling container C. The at least two development languages include Java, C, C + +, Python, C #, Visual basic. NET, PHP, Swift, Ruby, Go. The development language that can be used in the present invention is not limited thereto.
Furthermore, according to the development language corresponding to the code, an independent compiling environment corresponding to the development language is generated, and the compiling of the code is completed. It includes: creating a first mirror image, creating a first Docker container in the first mirror image, downloading and installing a compiler corresponding to the development language in the first Docker container, converting the code into a binary language through the compiler, and finishing compiling the code. For example: downloading a Docker image in the cloud platform, the image having an image ID and Tag, installing and starting a Docker container in the image, creating a/download/directory on the host, placing the required installation program under the/download/directory of the host, and mounting the/download/directory on the host under the/mnt/software/directory of the container, thereby accessing the content under the/download/directory of the host in the container, such as downloading a Python IDE (Integrated Development Environment) in the host, downloading and storing the Python IDE into the/download/directory, entering the container to see that a Python IDE already exists under the IDE/mnt/software/directory, then installing Python in the container to form a compiling Environment, the code stored on the host is cloned into the container, i.e. added into the container, and the adding process can also be carried out by creating a catalog for storing the code on the host and mounting the catalog for storing the code on the host onto the catalog in the container, so that the code can be accessed and used in the container. And converting the code into a binary language to finish compiling the code.
Further, the cloud platform creates a test container, adds the compiled code into the test container, generates an independent test environment corresponding to the development language, and completes the test of the code; the method comprises the following steps: creating a second mirror image, creating a second Docker container in the second mirror image, downloading and installing running test software corresponding to the development language in the second Docker container, configuring an environment, generating a software running test environment corresponding to the development language, and completing the running test of the code. For example: downloading a Docker image in the cloud platform, the image having an image ID and Tag, installing and launching a Docker container in the image, creating a/download 1/directory on the host, placing the required installation under the host/download 1/directory, and mounting the/download 1/directory on the host to the container/mnt/software 1/directory, thereby accessing the content under the host/download 1/directory in the container. For Java, it needs to download an installation package of JDK and tomcat, download and store it to/download/directory, then enter a container to see that the installation package of JDK and tomcat already exists under/mnt/software 1/directory, then install JDK and tomcat, set configuration environment variables in Docker, generate a software running test environment corresponding to the development language, store the compiled code in a new directory of a host, mount the new directory into a test container, and complete the running test of the code.
In addition, the method further includes the steps that the cloud platform creates a warehouse, and the compiling container and the testing container are stored in the warehouse, wherein the warehouse is a local Docker mirror image warehouse or a Docker registration private warehouse. According to the content, before the container is created, a mirror image needs to be created, the container is an example of the mirror image, after the mirror image is created, a mirror image ID and a label Tag are obtained, all the created mirror images are stored in a mirror image warehouse, and each mirror image can be distinguished according to information such as the mirror image ID and the label Tag.
The method provided by the invention also comprises the step of setting access rights for the compiling container and the testing container. The access rights may be set at the time of creating the container, in the form of a key. The containers that are accessible to different persons may differ, for example, by being arranged so that for developers, compilation containers are accessible, and for testers, test containers are accessible. But when the tester needs to access the compiling container, the access authority can be applied through the cloud platform.
In addition, the present invention further provides a cloud platform for software development, and referring to fig. 2, the cloud platform 200 includes: a project creating module 201, configured to obtain project information and create a project according to the project information; a task creating module 202, configured to create a plurality of tasks in the project, and select a development language according to the tasks to complete writing of a code, where one of the tasks corresponds to one development language, and the plurality of tasks include at least two different development languages; the compiling module 203 is used for creating a compiling container and adding the codes into the compiling container to complete the compiling of the codes; and the test module 204 is configured to create a test container, and add the compiled code into the test container to complete testing of the code. And the publishing module 205 is used for packaging and publishing the code which is compiled and tested.
The present invention also provides an electronic device, comprising: a processor; a memory storing a computer executable program comprising the cloud platform based software development method as described above.
Any number of the modules according to embodiments of the invention, or at least part of the functionality of any number thereof, may be implemented in one module. Any one or more of the modules according to the embodiments of the present invention may be implemented by being split into a plurality of modules. Any one or more of the modules according to embodiments of the present invention may be implemented at least in part as a hardware circuit, such as a Field Programmable Gate Array (FPGA), a Programmable Logic Array (PLA), a system on a chip, a system on a substrate, a system on a package, an Application Specific Integrated Circuit (ASIC), or may be implemented in any other reasonable manner of hardware or firmware by integrating or packaging circuits, or in any one of three implementations, or in any suitable combination of any of these. Alternatively, one or more of the modules according to embodiments of the invention may be implemented at least partly as computer program modules which, when executed, may perform corresponding functions.
Fig. 3 schematically shows a block diagram of an electronic device according to an embodiment of the invention.
As shown in fig. 3, the electronic device 300 includes a processor 310 and a memory 320. The electronic device 300 may perform a method according to an embodiment of the invention.
In particular, processor 310 may include, for example, a general purpose microprocessor, an instruction set processor and/or related chip set and/or a special purpose microprocessor (e.g., an Application Specific Integrated Circuit (ASIC)), and/or the like. The processor 310 may also include on-board memory for caching purposes. Processor 310 may be a single processing unit or a plurality of processing units for performing the different actions of the method flows according to embodiments of the present invention.
The memory 320, for example, can be any medium that can contain, store, communicate, propagate, or transport instructions. For example, a readable storage medium may include, but is not limited to, an electronic, magnetic, optical, electromagnetic, infrared, or semiconductor system, apparatus, device, or propagation medium. Specific examples of the readable storage medium include: magnetic storage devices, such as magnetic tape or Hard Disk Drives (HDDs); optical storage devices, such as compact disks (CD-ROMs); a memory, such as a Random Access Memory (RAM) or a flash memory; and/or wired/wireless communication links. Which stores a computer executable program which, when executed by the processor, causes the processor to perform the live-air tag adding method as described above.
The present invention also provides a computer-readable medium, which may be embodied in the apparatus/device/system described in the above embodiments; or may exist separately and not be assembled into the device/apparatus/system. The computer-readable medium carries one or more programs which, when executed, implement the method according to an embodiment of the invention.
According to embodiments of the present invention, a computer readable medium may be a computer readable signal medium or a computer readable storage medium or any combination of the two. A computer readable storage medium may be, for example, but not limited to, an electronic, magnetic, optical, electromagnetic, infrared, or semiconductor system, apparatus, or device, or any combination of the foregoing. More specific examples of the computer readable storage medium may include, but are not limited to: an electrical connection having one or more wires, a portable computer diskette, a hard disk, a Random Access Memory (RAM), a read-only memory (ROM), an erasable programmable read-only memory (EPROM or flash memory), an optical fiber, a portable compact disc read-only memory (CD-ROM), an optical storage device, a magnetic storage device, or any suitable combination of the foregoing. In the present invention, a computer readable storage medium may be any tangible medium that can contain, or store a program for use by or in connection with an instruction execution system, apparatus, or device. In the present invention, however, a computer readable signal medium may include a propagated data signal with computer readable program code embodied therein, for example, in baseband or as part of a carrier wave. Such a propagated data signal may take many forms, including, but not limited to, electro-magnetic, optical, or any suitable combination thereof. A computer readable signal medium may also be any computer readable medium that is not a computer readable storage medium and that can communicate, propagate, or transport a program for use by or in connection with an instruction execution system, apparatus, or device. Program code embodied on a computer readable medium may be transmitted using any appropriate medium, including but not limited to: wireless, wired, optical fiber cable, radio frequency signals, etc., or any suitable combination of the foregoing.
It will be appreciated by a person skilled in the art that various combinations and/or combinations of features described in the various embodiments and/or in the claims of the invention are possible, even if such combinations or combinations are not explicitly described in the invention. In particular, various combinations and/or combinations of the features recited in the various embodiments and/or claims of the present invention may be made without departing from the spirit or teaching of the invention. All such combinations and/or associations fall within the scope of the present invention.
While the invention has been shown and described with reference to certain exemplary embodiments thereof, it will be understood by those skilled in the art that various changes in form and details may be made therein without departing from the spirit and scope of the invention as defined by the appended claims and their equivalents. Accordingly, the scope of the present invention should not be limited to the above-described embodiments, but should be defined not only by the appended claims, but also by equivalents thereof.

Claims (7)

1. A software development method based on a cloud platform is characterized by comprising the following steps:
the cloud platform acquires project information and creates a project according to the project information;
the cloud platform creates a plurality of tasks in the project, and completes the writing of codes according to the task selection development language, wherein one task corresponds to one development language, and the plurality of tasks comprise at least two different development languages;
the cloud platform creates a compiling container, adds the code into the compiling container, generates an independent compiling environment corresponding to the development language according to the development language corresponding to the code, and completes compiling of the code, wherein the compiling comprises the following steps:
creating a first mirror image, creating a first Docker container in the first mirror image, downloading and installing a compiler corresponding to the development language in the first Docker container, converting the code into a binary language through the compiler, and finishing compiling the code;
the cloud platform creates a test container, adds the compiled code into the test container, generates an independent test environment corresponding to the development language, and completes the test of the code, wherein the test container comprises the following steps:
creating a second mirror image, creating a second Docker container in the second mirror image, downloading and installing running test software corresponding to the development language in the second Docker container, configuring an environment, generating a software running test environment corresponding to the development language, and completing running test of the code;
and packaging and releasing the codes which are compiled and tested by the cloud platform.
2. The method of claim 1, further comprising the cloud platform creating a repository, storing the compilation container and the test container in the repository, and setting access rights to the compilation container and the test container.
3. The method of claim 2, wherein setting access rights to the compilation container and the test container comprises applying for access rights through a cloud platform.
4. The method of claim 2, wherein the warehouse is a local Docker mirror warehouse or a Docker registry private warehouse.
5. A cloud platform for software development, the cloud platform comprising:
the project creating module is used for acquiring project information and creating projects according to the project information;
the task creating module is used for creating a plurality of tasks in the project and selecting a development language according to the tasks to finish the writing of codes, wherein one task corresponds to one development language, and the plurality of tasks comprise at least two different development languages;
the compiling module is used for creating a compiling container, adding the codes into the compiling container, generating an independent compiling environment corresponding to the development language according to the development language corresponding to the codes, and completing the compiling of the codes, and comprises the following steps:
creating a first mirror image, creating a first Docker container in the first mirror image, downloading and installing a compiler corresponding to the development language in the first Docker container, converting the code into a binary language through the compiler, and finishing compiling the code;
the test module is used for creating a test container, adding the compiled code into the test container, generating an independent test environment corresponding to the development language and completing the test of the code, and comprises the following steps:
creating a second mirror image, creating a second Docker container in the second mirror image, downloading and installing running test software corresponding to the development language in the second Docker container, configuring an environment, generating a software running test environment corresponding to the development language, and completing running test of the code;
and the release module is used for packaging and releasing the codes which are compiled and tested.
6. An electronic device, comprising:
a processor;
a memory storing a computer executable program comprising the cloud platform based software development method of any one of claims 1-4.
7. A computer-readable storage medium on which a computer program is stored, the program comprising the cloud platform-based software development method according to any one of claims 1 to 4.
CN201810901062.8A 2018-08-09 2018-08-09 Software development method based on cloud platform, equipment and medium Active CN109240662B (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN201810901062.8A CN109240662B (en) 2018-08-09 2018-08-09 Software development method based on cloud platform, equipment and medium

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN201810901062.8A CN109240662B (en) 2018-08-09 2018-08-09 Software development method based on cloud platform, equipment and medium

Publications (2)

Publication Number Publication Date
CN109240662A CN109240662A (en) 2019-01-18
CN109240662B true CN109240662B (en) 2022-01-25

Family

ID=65069995

Family Applications (1)

Application Number Title Priority Date Filing Date
CN201810901062.8A Active CN109240662B (en) 2018-08-09 2018-08-09 Software development method based on cloud platform, equipment and medium

Country Status (1)

Country Link
CN (1) CN109240662B (en)

Families Citing this family (20)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN109976722A (en) * 2019-03-07 2019-07-05 上海上湖信息技术有限公司 A kind of development process management system
CN109976739A (en) * 2019-03-29 2019-07-05 山东浪潮云信息技术有限公司 A kind of front end development approach based on docker
CN110347376A (en) * 2019-06-27 2019-10-18 无线生活(杭州)信息科技有限公司 Project development method and device
CN112148583A (en) * 2019-06-27 2020-12-29 北京车和家信息技术有限公司 Software testing method and system
US11385923B2 (en) * 2019-07-16 2022-07-12 International Business Machines Corporation Container-based virtualization system extending kernel functionality using kernel modules compiled by a compiling container and loaded by an application container
CN110765004A (en) * 2019-09-26 2020-02-07 北京你财富计算机科技有限公司 Testing method and device based on sandbox system and electronic equipment
CN112711522B (en) * 2019-10-24 2024-04-19 中国科学院深圳先进技术研究院 Cloud testing method and system based on docker and electronic equipment
CN113127136B (en) * 2019-12-30 2023-12-12 北京懿医云科技有限公司 Docker mirror image generation method and device, storage medium and electronic equipment
CN111273912B (en) * 2020-01-19 2024-04-02 深圳创维-Rgb电子有限公司 Independent environment distribution method, intelligent terminal and storage medium
CN111399810A (en) * 2020-03-11 2020-07-10 杭州涂鸦信息技术有限公司 iOS application program dynamic componentization development method, system and equipment thereof
CN111309297B (en) * 2020-03-27 2023-09-15 中国工商银行股份有限公司 Script development system and method
CN111399865A (en) * 2020-04-21 2020-07-10 贵州新致普惠信息技术有限公司 Method for automatically constructing target file based on container technology
CN112286802B (en) * 2020-10-23 2023-04-25 上海淇玥信息技术有限公司 Method and device for testing program performance and electronic equipment
CN112650478B (en) * 2021-01-04 2024-03-26 中车青岛四方车辆研究所有限公司 Dynamic construction method, system and equipment for embedded software development platform
CN112882720B (en) * 2021-03-15 2024-03-22 抖音视界有限公司 Compiling method and device
CN113434146A (en) * 2021-06-22 2021-09-24 青岛海尔科技有限公司 Code compiling method, device, storage medium and electronic device
CN113505073A (en) * 2021-07-15 2021-10-15 北京金山云网络技术有限公司 Database performance test method, device, equipment and medium
CN113609005A (en) * 2021-07-19 2021-11-05 浙江吉利控股集团有限公司 Software testing environment management system and method
CN114157654B (en) * 2021-10-28 2024-03-19 杭州未名信科科技有限公司 Integrated circuit collaborative design system and method
CN114925858B (en) * 2022-07-19 2023-09-29 北京百度网讯科技有限公司 Task processing method and device based on deep learning framework continuous integrated system

Family Cites Families (6)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN102968298A (en) * 2012-10-31 2013-03-13 山东浪潮齐鲁软件产业股份有限公司 Software product construction method
US9760736B2 (en) * 2015-09-29 2017-09-12 International Business Machines Corporation CPU obfuscation for cloud applications
CN106101242B (en) * 2016-06-24 2019-08-06 深圳前海微众银行股份有限公司 The construction method and device of block chain cloud service platform
CN106250179B (en) * 2016-07-26 2019-10-25 北京北森云计算股份有限公司 The method that realization system dynamic function intercepts extension is compiled by multilingual cloud
CN106227605B (en) * 2016-07-26 2019-10-18 北京北森云计算股份有限公司 A kind of the dynamic micro services expansion method and device of multilingual cloud compiling
CN108023952B (en) * 2017-12-04 2020-08-18 西安电子科技大学 Cloud and mist combination-based modularized Internet of things application rapid construction platform

Also Published As

Publication number Publication date
CN109240662A (en) 2019-01-18

Similar Documents

Publication Publication Date Title
CN109240662B (en) Software development method based on cloud platform, equipment and medium
CN108829399B (en) Application testing method, testing device, medium and computing equipment
US10387199B2 (en) Container chaining for automated process completion
CN107615239B (en) Infrastructure for hosting and publishing software packages
JP6294886B2 (en) Generate native code from intermediate language code for applications
US20200334544A1 (en) Method, device and computer program product for processing machine learning model
EP3751411A1 (en) A system for building, managing, deploying and executing reusable analytical solution modules for industry applications
US8843904B2 (en) Automated building and retargeting of architecture-dependent assets
US20130125092A1 (en) Generating deployable code from simulation models
CN110134386A (en) A kind of program editing method and device
CN108958992A (en) test method and device
US10416973B2 (en) Analysis of source code for deployment
CN109766099A (en) Front end source code Compilation Method, device, storage medium and computer equipment
US11188420B2 (en) Defect resolution in a software solution
US9116777B1 (en) In-flight process instance migration between business process execution language (BPEL) suites
US10990507B2 (en) System and method for provisioning a virtual machine test environment
CN115629971A (en) Application development system and method
US9274933B2 (en) Pretest setup planning
CN111459506A (en) Deployment method, device, medium and electronic equipment of deep learning platform cluster
Chiari et al. DOML: a new modelling approach to infrastructure-as-code
US11385923B2 (en) Container-based virtualization system extending kernel functionality using kernel modules compiled by a compiling container and loaded by an application container
Berger An open continuous deployment infrastructure for a self-driving vehicle ecosystem
US20200349304A1 (en) Method, apparatus, device, and medium for implementing simulator
Friesel PhantomJS Cookbook
Kohli et al. Troubleshooting Docker

Legal Events

Date Code Title Description
PB01 Publication
PB01 Publication
SE01 Entry into force of request for substantive examination
SE01 Entry into force of request for substantive examination
GR01 Patent grant
GR01 Patent grant