Azure DevOps - configuring two jobs in yaml one with cron schedule second with manual execution

0 votes
I want to run the  e2e tests automatically at scheduled times and also on-demand. How can I achieve this?
 

jobs:
  - job: 'auto-run tests'
    displayName: E2E scheduled tests
    schedules:
      - cron: "0 5 * * 1,3,5"
        branches:
          include:
            - master
    steps:

<some auto-run tests job config here>

  - job: 'manually run tests'
    displayName: E2E manually run tests
    steps:
 

I tried this but, it didn't work. Can someone mention a solution to achieve this?
Mar 23, 2022 in Other DevOps Questions by Kichu
• 19,050 points
718 views

No answer to this question. Be the first to respond.

Your answer

Your name to display (optional):
Privacy: Your email address will only be used for sending these notifications.

Related Questions In Other DevOps Questions

0 votes
0 answers
0 votes
1 answer

How to integrate OnPrem Azure DevOps Server with the cloud one?

When I go to Project > Boards ...READ MORE

answered Feb 11, 2022 in Other DevOps Questions by Bhavitha
• 1,000 points
404 views
0 votes
0 answers
0 votes
0 answers
0 votes
0 answers

Multiple YAML build pipelines in Azure DevOps

Using the new YAML way I want ...READ MORE

Mar 15, 2022 in DevOps Tools by Kichu
• 19,050 points
882 views
webinar REGISTER FOR FREE WEBINAR X
REGISTER NOW
webinar_success Thank you for registering Join Edureka Meetup community for 100+ Free Webinars each month JOIN MEETUP GROUP