Skip to content
This repository has been archived by the owner on Apr 12, 2023. It is now read-only.

Added QA environment #957

Merged
1 commit merged into from
Apr 6, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions azure-pipelines/app/app-build-adhoc-qa.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: $(SourceBranchName)_$(Date:yyyyMMdd)$(Rev:.r)

# NOTE: CI/PR triggers should be set in the Classic Editor

variables:
- group: app-settings-qa
- name: AppVersion
value: '2.1.0'

jobs:
- job: build_ios
pool:
vmImage: 'macOS-11'
variables:
- group: ios-signing-distribution
- template: templates/variables/ios-build-environment-variables.yml
steps:
- template: templates/build/ios-build-adhoc-template.yml

- job: build_android
pool:
vmImage: 'macOS-11'
variables:
- group: android-signing-dev
- template: templates/variables/android-build-environment-variables.yml
steps:
- template: templates/build/android-build-adhoc-template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ steps:
- script: |
if [ $(Environment) = "dv" ]; then
FONT_COLOR=yellow
elif [ $(Environment) = "qa" ]; then
FONT_COLOR=orange
elif [ $(Environment) = "stg" ]; then
FONT_COLOR=green1
fi
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,8 @@ steps:
- script: |
if [ $(Environment) = "dv" ]; then
FONT_COLOR=yellow
elif [ $(Environment) = "qa" ]; then
FONT_COLOR=orange
elif [ $(Environment) = "stg" ]; then
FONT_COLOR=green1
fi
Expand All @@ -70,10 +72,10 @@ steps:
- script: |
if [ $(Environment) = "dv" ]; then
FONT_COLOR=yellow
elif [ $(Environment) = "qa" ]; then
FONT_COLOR=orange
elif [ $(Environment) = "stg" ]; then
FONT_COLOR=green1
elif [ $(Environment) = "prod" ]; then
FONT_COLOR=blue
fi

IOS_PATH="$(System.DefaultWorkingDirectory)/Covid19Radar/Covid19Radar.iOS"
Expand Down