Topic 1 Question 412
A developer is setting up AWS CodePipeline for a new application. During each build, the developer must generate a test report.
Which solution will meet this requirement?
Create an AWS CodeBuild build project that runs tests. Configure the buildspec file with the test report information.
Create an AWS CodeDeploy deployment that runs tests. Configure the AppSpec file with the test report information.
Run the builds on an Amazon EC2 instance that has AWS Systems Manager Agent (SSM Agent) installed and activated.
Create a repository in AWS CodeArtifact. Select the test report template.
ユーザの投票
コメント(2)
- 正解だと思う選択肢: A
Answer is A
👍 3Mo_19812024/07/28 - 正解だと思う選択肢: A
version: 0.2
phases: install: runtime-versions: nodejs: 12 build: commands: - echo Running tests... - npm install - npm test artifacts: files: - '/*' base-directory: build reports: my-test-report: files: - '/*' base-directory: test-results discard-paths: no
👍 1albert_kuo2024/07/27
シャッフルモード