Adobe
CI/CD 2 questions
- #1PR Test Gate
A repository at
/home/interview/repohas a test suite located at./run-tests.shbut no automated testing on pull requests. Developers must manually run tests before merging, leading to inconsistent test coverage and occasional bugs in the main branch. A starter workflow file has been created at.github/workflows/pr-tests.ymlwith the basic structure. The repository already has the upload-artifact action available locally at.github/actions/upload-artifactfor artifact management. - #2Reusable Workflow with Input Parameters
A repository at
/home/interview/repocontains multiple applications that share common build and test steps. The development team wants to eliminate code duplication across workflows by creating a centralized reusable workflow that can be called from different workflows with different parameters.
Cloud 1 question
- #3Create a Hello World Lambda Function
Your team needs a simple Lambda function for a greeting microservice.
Containers 1 question
- #4Docker Binary Architecture
You have a container image
myapp:dualfixbuilt from/home/interview/Dockerfilethat fails during execution.
Linux 1 question
- #5Real-Time Log Timestamping
You're troubleshooting a service that produces untagged log output when run manually, making it difficult to analyze timing and sequence of events.