From cb46052d46b8dcdf9f4bc246f20bd14c69ac2a48 Mon Sep 17 00:00:00 2001 From: Sebastian Avila Date: Tue, 24 Dec 2024 06:41:42 +0000 Subject: [PATCH] printing env Signed-off-by: Sebastian Avila --- .azure-pipelines/pipelines.yml | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/.azure-pipelines/pipelines.yml b/.azure-pipelines/pipelines.yml index 88b93dac5..62dbb6b8e 100644 --- a/.azure-pipelines/pipelines.yml +++ b/.azure-pipelines/pipelines.yml @@ -48,16 +48,10 @@ stages: ls -l echo "File ls generated" ls -l generated/failed-testlogs + echo "env vars" + env + echo "bazel output" cat bazel.output.txt - echo "$ENVOY_FAILED_TEST_LOGS" - BAZEL_OUT=$(readlink bazel-testlogs) - echo "Listing docker cotnainers" - docker ps - CONTAINER_ID=$(docker ps -aqf "name=envoy_ci") - # Copy the testlogs directory to the host - docker cp $CONTAINER_ID:$BAZEL_OUT $(Build.SourcesDirectory) - echo "readlink" - ls -l condition: always() displayName: "ls" - task: PublishPipelineArtifact@1