summaryrefslogtreecommitdiff
path: root/azure-pipelines
diff options
context:
space:
mode:
authorCharles Pigott <charlespigott@googlemail.com>2020-09-29 18:40:41 +0100
committerCharles Pigott <charlespigott@googlemail.com>2020-10-03 16:17:11 +0100
commitbef9e3fcfae897f28601844aad1ea45a6b900233 (patch)
tree3d5eab8802ff614a86ed60e9a269b5f0d94829df /azure-pipelines
parent5af98c69e6206379df80f895fb90ff98839e22d1 (diff)
downloadopenttd-bef9e3fcfae897f28601844aad1ea45a6b900233.tar.xz
Remove: Old Azure Pipelines CI
Diffstat (limited to 'azure-pipelines')
-rw-r--r--azure-pipelines/templates/ci-git-rebase.yml10
-rw-r--r--azure-pipelines/templates/ci-opengfx.yml13
2 files changed, 0 insertions, 23 deletions
diff --git a/azure-pipelines/templates/ci-git-rebase.yml b/azure-pipelines/templates/ci-git-rebase.yml
deleted file mode 100644
index 96a23a540..000000000
--- a/azure-pipelines/templates/ci-git-rebase.yml
+++ /dev/null
@@ -1,10 +0,0 @@
-steps:
-# Rebase to target branch for every PR. This means users don't have to
-# rebase every time target branch changes. As long as the PR applies cleanly, we
-# will validate it.
-- bash: |
- git config user.email 'info@openttd.org'
- git config user.name 'OpenTTD CI'
- git rebase origin/${SYSTEM_PULLREQUEST_TARGETBRANCH}
- displayName: 'Rebase to target branch'
- condition: and(succeeded(), eq(variables['Build.Reason'], 'PullRequest'))
diff --git a/azure-pipelines/templates/ci-opengfx.yml b/azure-pipelines/templates/ci-opengfx.yml
deleted file mode 100644
index 60231e386..000000000
--- a/azure-pipelines/templates/ci-opengfx.yml
+++ /dev/null
@@ -1,13 +0,0 @@
-parameters:
- SharedFolder: '/usr/local/share/games/openttd'
- PrefixCommand: ''
-
-steps:
-- bash: |
- set -ex
- ${{ parameters.PrefixCommand }} mkdir -p "${{ parameters.SharedFolder }}/baseset"
- cd "${{ parameters.SharedFolder }}/baseset"
- ${{ parameters.PrefixCommand }} curl -L https://cdn.openttd.org/opengfx-releases/0.6.0/opengfx-0.6.0-all.zip -o opengfx-all.zip
- ${{ parameters.PrefixCommand }} unzip opengfx-all.zip
- ${{ parameters.PrefixCommand }} rm -f opengfx-all.zip
- displayName: 'Install OpenGFX'