-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore: review pipeline DEVOPS-551 * chore: remove useless MockLoginView ja MockLogoutView from tet
- Loading branch information
1 parent
c86d24c
commit 8d344aa
Showing
3 changed files
with
66 additions
and
60 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
# | ||
# Review pipeline. Run build and deploy for Platta test environments. | ||
# Pipeline runs different tests e.g. unittest and browser tests. | ||
# | ||
# Continuous integration (CI) triggers cause a pipeline to run whenever you push | ||
# an update to the specified branches or you push specified tags. | ||
# only PR trigger pipeline | ||
trigger: none | ||
|
||
# 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: | ||
# PR target branch | ||
branches: | ||
include: | ||
- main | ||
paths: | ||
include: | ||
- azure-pipelines/tet-review.yml | ||
- backend/docker/tet.Dockerfile | ||
- backend/tet/** | ||
- backend/shared/** | ||
- frontend/* | ||
- frontend/tet/** | ||
- frontend/shared/** | ||
exclude: | ||
- README.md | ||
- backend/benefit/** | ||
- backend/kesaseteli/** | ||
- frontend/benefit/** | ||
- frontend/kesaseteli/** | ||
- frontend/**/browser-tests | ||
- frontend/**/__tests__ | ||
|
||
# By default, use self-hosted agents | ||
pool: Default | ||
|
||
resources: | ||
repositories: | ||
# Azure DevOps repository | ||
- repository: yjdh-tet-pipelines | ||
type: git | ||
# Azure DevOps project/repository | ||
name: yjdh-tet/yjdh-tet-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-tet-review.yml@yjdh-tet-pipelines | ||
# Application build arguments and config map values as key value pairs. | ||
# The values here will override the values defined in the yjdh-tet-pipelines repository. | ||
# for example | ||
# parameters: | ||
# buildArgs: | ||
# NEXT_PUBLIC_DEBUG: 0 | ||
# configMap: # pod environment variables | ||
# DEBUG: 0 |
This file was deleted.
Oops, something went wrong.
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