-
-
Notifications
You must be signed in to change notification settings - Fork 20
Pipeline task logs only available for the first stage #35
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Hi @rossbuggins, @bonddim Thanks for reporting this issue! 🚀 To investigate further, we need a few more details:
— PurpleSoft Team |
Hi @tiz-sharp , app version: 3.1.0 for iOS Examples: two simple jobs (works as expected)pool:
vmImage: ubuntu-latest
jobs:
- job: Build
steps:
- checkout: none
- script: echo "Building..."
displayName: "Building..."
- job: DependentJob
dependsOn: Build
steps:
- checkout: none
- script: echo "Some Job..."
displayName: "echo..." multi-stagepool:
vmImage: ubuntu-latest
stages:
- stage: CI
jobs:
- job: Build
steps:
- checkout: none
- script: echo "Building..."
displayName: "Building..."
- stage: CD
jobs:
- deployment: Deploy
environment: sandbox
strategy:
runOnce:
deploy:
steps:
- script: echo "Deploying..."
displayName: "Deploying..." multi-jobpool:
vmImage: ubuntu-latest
jobs:
- job: Build
steps:
- checkout: none
- script: echo "Building..."
displayName: "Building..."
- deployment: Deploy
environment: sandbox
dependsOn: Build
strategy:
runOnce:
deploy:
steps:
- script: echo "Deploying..."
displayName: "Deploying..." multi-stage with simple job after deploymentpool:
vmImage: ubuntu-latest
stages:
- stage: CI
jobs:
- job: Build
steps:
- script: echo "Building..."
displayName: "Building..."
- stage: CD
jobs:
- deployment: Deploy
environment: sandbox
strategy:
runOnce:
deploy:
steps:
- script: echo "Deploying..."
displayName: "Deploying..."
- job: PostDeploy
dependsOn: Deploy
steps:
- checkout: none
- script: echo "Post-deploying..."
displayName: "Post-deploying..." |
Will be released next week |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
On multistage yaml pipelines we can only see the tasks for the first (build) stage, they are not shown for the deploy stages
The text was updated successfully, but these errors were encountered: