Skip to content

Commit

Permalink
Merge pull request #303 from Vitals9367/main
Browse files Browse the repository at this point in the history
Stageprod pipeline split
  • Loading branch information
tuutti authored Feb 13, 2023
2 parents d4307c9 + f34f272 commit 8731117
Show file tree
Hide file tree
Showing 2 changed files with 94 additions and 0 deletions.
47 changes: 47 additions & 0 deletions azure-pipelines-prod.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
# Continuous integration (CI) triggers cause a pipeline to run whenever you push
# an update to the specified branches or you push specified tags.
trigger: none
# batch: true
# branches:
# include:
# - main
# paths:
# exclude:
# - README.md

# Pull request (PR) triggers cause a pipeline to run whenever a pull request is
# opened with one of the specified target branches, or when updates are made to
# such a pull request.
#
# GitHub creates a new ref when a pull request is created. The ref points to a
# merge commit, which is the merged code between the source and target branches
# of the pull request.
#
# Opt out of pull request validation
pr: none

# By default, use self-hosted agents
pool: Default

# Image tag name for Fuse projects
#parameters:
#- name: imagetag
# displayName: Image tag to be built and/or deployed
# type: string
# default: latest

resources:
repositories:
# Azure DevOps repository
- repository: kasvatus-koulutus-pipelines
type: git
# Azure DevOps project/repository
name: kasvatus-koulutus/kasvatus-koulutus-pipelines

extends:
# Filename in Azure DevOps Repository (note possible -ui or -api)
# Django example: azure-pipelines-PROJECTNAME-api-release.yml
# Drupal example: azure-pipelines-drupal-release.yml
template: azure-pipelines-kasvatus-koulutus-prod.yml@kasvatus-koulutus-pipelines
#parameters:
#imagetag: ${{ parameters.imagetag }}
47 changes: 47 additions & 0 deletions azure-pipelines-staging.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
# Continuous integration (CI) triggers cause a pipeline to run whenever you push
# an update to the specified branches or you push specified tags.
trigger:
batch: true
branches:
include:
- main
paths:
exclude:
- README.md

# Pull request (PR) triggers cause a pipeline to run whenever a pull request is
# opened with one of the specified target branches, or when updates are made to
# such a pull request.
#
# GitHub creates a new ref when a pull request is created. The ref points to a
# merge commit, which is the merged code between the source and target branches
# of the pull request.
#
# Opt out of pull request validation
pr: none

# By default, use self-hosted agents
pool: Default

# Image tag name for Fuse projects
#parameters:
#- name: imagetag
# displayName: Image tag to be built and/or deployed
# type: string
# default: latest

resources:
repositories:
# Azure DevOps repository
- repository: kasvatus-koulutus-pipelines
type: git
# Azure DevOps project/repository
name: kasvatus-koulutus/kasvatus-koulutus-pipelines

extends:
# Filename in Azure DevOps Repository (note possible -ui or -api)
# Django example: azure-pipelines-PROJECTNAME-api-release.yml
# Drupal example: azure-pipelines-drupal-release.yml
template: azure-pipelines-kasvatus-koulutus-staging.yml@kasvatus-koulutus-pipelines
#parameters:
#imagetag: ${{ parameters.imagetag }}

0 comments on commit 8731117

Please sign in to comment.