Skip to content

Commit

Permalink
Merge branch 'main' into feature/agent-health-check
Browse files Browse the repository at this point in the history
  • Loading branch information
tippmar-nr authored Jan 24, 2025
2 parents fe9c23e + f448b35 commit a8b8f65
Showing 1 changed file with 16 additions and 4 deletions.
20 changes: 16 additions & 4 deletions .github/workflows/run_linux_container_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,14 @@ jobs:
- name: Build & Run amd64 Linux Container Integration Tests
env:
BUILD_ARCH: amd64
run: dotnet test ./tests/Agent/IntegrationTests/ContainerIntegrationTests/ContainerIntegrationTests.csproj --framework net9.0 --filter Architecture=amd64
run: dotnet test ./tests/Agent/IntegrationTests/ContainerIntegrationTests/ContainerIntegrationTests.csproj --framework net9.0 --filter Architecture=amd64 --logger "console;verbosity=detailed" --logger "trx;verbosity=detailed" --results-directory ${{ env.test_results_path }}

- name: Archive test results
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
with:
name: ContainerTestResults-amd64
path: ${{ env.test_results_path }} # Directory containing files to upload


run-arm64-linux-container-tests:
name: Run arm64 Linux Container Integration Tests
Expand All @@ -94,7 +101,7 @@ jobs:
NR_DOTNET_TEST_SAVE_WORKING_DIRECTORY: 1
# Make this variable true to enable extra data-gathering and logging to help troubleshoot test failures, at the cost of additional time and resources
enhanced_logging: false


steps:
- name: Harden Runner
Expand Down Expand Up @@ -138,5 +145,10 @@ jobs:
- name: Build & Run arm64 Linux Container Integration Tests
env:
BUILD_ARCH: arm64
run: dotnet test ./tests/Agent/IntegrationTests/ContainerIntegrationTests/ContainerIntegrationTests.csproj --framework net9.0 --filter Architecture=arm64

run: dotnet test ./tests/Agent/IntegrationTests/ContainerIntegrationTests/ContainerIntegrationTests.csproj --framework net9.0 --filter Architecture=arm64 --logger "console;verbosidty=detailed" --logger "trx;verbosity=detailed" --results-directory ${{ env.test_results_path }}

- name: Archive test results
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
with:
name: ContainerTestResults-arm64
path: ${{ env.test_results_path }} # Directory containing files to upload

0 comments on commit a8b8f65

Please sign in to comment.