What work is performed in the Build activity of the Continuous Delivery Pipeline?
The correct answer is B. Compile. The Build activity of the Continuous Delivery Pipeline is responsible for creating deployable binaries and merging development branches into the trunk. The Build activity includes the following practices:
Compile -- Compile is the process of transforming the source code into executable code that can run on a specific platform or environment. Compile involves checking the syntax, semantics, and dependencies of the code, and resolving any errors or conflicts. Compile also involves linking the code with other libraries or components that are required for the functionality of the solution.
Package -- Package is the process of bundling the compiled code and other resources into a format that can be easily deployed to the target environment. Package involves creating archives, containers, or installers that contain the necessary files and metadata for the deployment process. Package also involves applying versioning and configuration information to the packages, to ensure traceability and consistency.
Which two security skills are part of the Continuous Integration aspect? (Choose two.)
Which technical practice incorporates build-time identification of security vulnerabilities in the code?
What is the correct order of activities in the Continuous Integration aspect?
The correct order of activities in the Continuous Integration aspect is: Develop, Build, Test end-to-end, Stage. Continuous Integration (CI) is an aspect of the Continuous Delivery Pipeline that automates the development, testing, integration, and validation of new functionality in preparation for deployment and release. CI is the second aspect in the four-part Continuous Delivery Pipeline of Continuous Exploration (CE), Continuous Integration (CI), Continuous Deployment (CD), and Release on Demand. CI consists of four activities, as shown in Figure 1:
Develop -- This activity involves implementing stories by refining features from the ART Backlog, coding, testing, and committing the work product into the source control system. Testing in this activity tends to focus on unit and story-level testing and often requires test doubles to replicate other components or subsystems that are not readily available or easily tested.
Build -- This activity involves creating deployable binaries and merging development branches into the trunk. Building in this activity includes compiling, linking, packaging, and verifying the code and components. Building also involves applying code quality and security checks, such as static code analysis, code coverage, and code review.
Test end-to-end -- This activity involves validating the solution end-to-end, including the functional and nonfunctional aspects, such as performance, usability, reliability, and security. Testing in this activity requires integrating the code and components with other subsystems and services, and using test environments that resemble the production environment as much as possible. Testing also involves applying automated testing tools and frameworks, such as regression testing, integration testing, system testing, and acceptance testing.