From 225fabc65272efc22a9e11cc313261f8767361ac Mon Sep 17 00:00:00 2001 From: Tero Virtanen Date: Tue, 24 Sep 2024 13:31:30 +0300 Subject: [PATCH] build: remove obsolete pipeline files --- azure-pipelines-master.yml | 37 ------------------------------------- azure-pipelines-release.yml | 35 ----------------------------------- 2 files changed, 72 deletions(-) delete mode 100644 azure-pipelines-master.yml delete mode 100644 azure-pipelines-release.yml diff --git a/azure-pipelines-master.yml b/azure-pipelines-master.yml deleted file mode 100644 index fe6ed1e..0000000 --- a/azure-pipelines-master.yml +++ /dev/null @@ -1,37 +0,0 @@ -# Continuous integration (CI) triggers cause a pipeline to run whenever you push -# an update to the specified branches or you push specified tags. -trigger: - branches: - include: - - main - paths: - exclude: - - README.md - -# 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 - -resources: - repositories: - # Azure DevOps repository - - repository: atv-pipelines - type: git - # Azure DevOps project/repository - name: atv/atv-pipelines - -extends: - # Filename in Azure DevOps Repository (note possible -ui or -api) - # Django example: azure-pipelines-PROJECTNAME-api-master.yml - # Drupal example: azure-pipelines-PROJECTNAME-master.yml - template: azure-pipelines-atv-api-master.yml@atv-pipelines diff --git a/azure-pipelines-release.yml b/azure-pipelines-release.yml deleted file mode 100644 index ea57750..0000000 --- a/azure-pipelines-release.yml +++ /dev/null @@ -1,35 +0,0 @@ -# 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 - tags: - include: - - atv-v* - -# 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 - -resources: - repositories: - # Azure DevOps repository - - repository: atv-pipelines - type: git - # Azure DevOps project/repository - name: atv/atv-pipelines - -extends: - # Filename in Azure DevOps Repository (note possible -ui or -api) - # Django example: azure-pipelines-PROJECTNAME-api-release.yml - # Drupal example: azure-pipelines-PROJECTNAME-release.yml - template: azure-pipelines-atv-api-release.yml@atv-pipelines