From ad5e18c2bf8e7fdb1c4146d2006f1512b7f7a3af Mon Sep 17 00:00:00 2001 From: iivoraitahila <79191921+iivoraitahila@users.noreply.github.com> Date: Tue, 7 Mar 2023 11:19:54 +0200 Subject: [PATCH 1/2] Create API test-staging build pipeline --- .../azure-pipelines-build-test-staging.yml | 32 +++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 backend/azure-pipelines-build-test-staging.yml diff --git a/backend/azure-pipelines-build-test-staging.yml b/backend/azure-pipelines-build-test-staging.yml new file mode 100644 index 000000000..4c21e282e --- /dev/null +++ b/backend/azure-pipelines-build-test-staging.yml @@ -0,0 +1,32 @@ +# 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: +# - README.md +trigger: + tags: + include: + - v* + +# Opt out of pull request validation +pr: none + +# By default, use self-hosted agents +pool: Default + +resources: + repositories: + # Azure DevOps repository + - repository: hitastj-pipelines + type: git + # Azure DevOps project/repository + name: hitastj/hitastj-pipelines + +extends: + # Filename in Azure DevOps Repository (note possible -ui or -api) + template: azure-pipelines-build-hitastj-api-test-staging.yml@hitastj-pipelines From 9d3a2c720bf9b05914225882ad69cc2c429ed3eb Mon Sep 17 00:00:00 2001 From: iivoraitahila <79191921+iivoraitahila@users.noreply.github.com> Date: Tue, 7 Mar 2023 11:21:06 +0200 Subject: [PATCH 2/2] Create UI test-staging build pipeline --- .../azure-pipelines-build-test-staging.yml | 32 +++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 frontend/azure-pipelines-build-test-staging.yml diff --git a/frontend/azure-pipelines-build-test-staging.yml b/frontend/azure-pipelines-build-test-staging.yml new file mode 100644 index 000000000..81df92f05 --- /dev/null +++ b/frontend/azure-pipelines-build-test-staging.yml @@ -0,0 +1,32 @@ +# 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: +# - README.md +trigger: + tags: + include: + - v* + +# Opt out of pull request validation +pr: none + +# By default, use self-hosted agents +pool: Default + +resources: + repositories: + # Azure DevOps repository + - repository: hitastj-pipelines + type: git + # Azure DevOps project/repository + name: hitastj/hitastj-pipelines + +extends: + # Filename in Azure DevOps Repository (note possible -ui or -api) + template: azure-pipelines-build-hitastj-ui-test-staging.yml@hitastj-pipelines