-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for building test images (via test branch). Clean up noisy comments from yml files.
- Loading branch information
Showing
5 changed files
with
34 additions
and
128 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,40 +1,25 @@ | ||
# 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 | ||
# Test environment deploy pipeline | ||
# Triggers automatically after a build of test branch | ||
|
||
# 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 | ||
trigger: none | ||
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 | ||
parameters: | ||
- name: buildenv | ||
displayName: Build environment | ||
type: string | ||
default: "-test" | ||
values: | ||
- "-prod" | ||
- "-staging" | ||
- "-dev" | ||
|
||
resources: | ||
repositories: | ||
# Azure DevOps repository | ||
- repository: linkedevents-pipelines | ||
type: git | ||
# Azure DevOps project/repository | ||
name: linkedevents/linkedevents-pipelines | ||
|
||
extends: | ||
# Filename in Azure DevOps Repository (note possible -ui or -api) | ||
# Django example: azure-pipelines-linkedevents-api-release.yml | ||
# Drupal example: azure-pipelines-drupal-release.yml | ||
template: azure-pipelines-deploy-linkedevents-api-test.yml@linkedevents-pipelines | ||
#parameters: | ||
#imagetag: ${{ parameters.imagetag }} |