-
Notifications
You must be signed in to change notification settings - Fork 2
/
azure-pipelines-test.yml
54 lines (49 loc) · 1.62 KB
/
azure-pipelines-test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# 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:
- master
paths:
exclude:
- '*release-please*'
- '**/*.md'
- '.github/'
# 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: kukkuu-pipelines
type: git
# Azure DevOps project/repository
name: kukkuu/kukkuu-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-kukkuu-admin-test.yml@kukkuu-pipelines
parameters:
buildArgs:
REACT_APP_API_URI: https://kukkuu.api.test.hel.ninja/graphql
BROWSER_TESTS_JWT_AD_GROUP: kukkuu_browser_test
configMap: # pod environment variables
BROWSER_TESTS_JWT_AD_GROUP: kukkuu_browser_test
#imagetag: ${{ parameters.imagetag }}