DevOps Classroom notes 11/Oct/2025

Azure DevOps

  • Refer Here for Azure DevOps Page
  • Azure DevOps offers services to manage the complete project
    • requirements
    • design
    • code
    • tests
    • artifacts
    • pipelines
    • tracking
  • Azure DevOps is offered in two modes
    • Azure DevOps Services
    • Azure DevOps Servers
  • Azure DevOps Services offer free and paid plans and can be integrated with Azure Account Refer Here for pricing

Azure Pipelines

Preview

name: 'spring petclinic build'
# where to run
pool:
  vmImage: ubuntu-latest
# when to run
trigger:
  - main
# pr:
#   - main
# schedules:
#   - cron: '0 0 * * *'
#     displayName: Daily midnight build
#     branches:
#       include:
#       - main
stages:
  - stage: ci
    displayName: Build Spring petclinic
    jobs:
      - job: cijob
        displayName: build spring petclinic using maven
        steps:
          - task: Maven@4
            inputs:
              mavenPOMFile: 'pom.xml'
              goals: 'package'
              testResultsFiles: '**/surefire-reports/TEST-*.xml'
              publishJUnitResults: true
              jdkVersionOption: '1.21'


Published
Categorized as Uncategorized Tagged

By continuous learner

devops & cloud enthusiastic learner

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Please turn AdBlock off
Animated Social Media Icons by Acurax Responsive Web Designing Company

Discover more from Direct DevOps from Quality Thought

Subscribe now to keep reading and get access to the full archive.

Continue reading

Visit Us On FacebookVisit Us On LinkedinVisit Us On Youtube