-
Notifications
You must be signed in to change notification settings - Fork 306
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
resolve oracledb plugin step failing (#3216)
* Fix OracleDB plugin job on CI to use Github Actions services container for Test-Agent instead of docker-compose
- Loading branch information
Showing
2 changed files
with
19 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,17 @@ | ||
name: "Get APM Test Agent Logs" | ||
description: "Get the APM Test Agent logs from the test run." | ||
inputs: | ||
container-id: | ||
description: "ID of the Docker Container to get logs from (optional)" | ||
required: false | ||
runs: | ||
using: composite | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- run: docker-compose logs testagent | ||
- run: | | ||
if [ -n "${{inputs.container-id}}" ]; then | ||
docker logs ${{inputs.container-id}} | ||
else | ||
docker-compose logs testagent | ||
fi | ||
shell: bash |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters