summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.ci/templates/build-standard.yml2
-rw-r--r--.ci/templates/build-testing.yml2
-rw-r--r--.ci/templates/release.yml29
3 files changed, 2 insertions, 31 deletions
diff --git a/.ci/templates/build-standard.yml b/.ci/templates/build-standard.yml
index 9975f5c49..6cd209dbf 100644
--- a/.ci/templates/build-standard.yml
+++ b/.ci/templates/build-standard.yml
@@ -3,7 +3,7 @@ jobs:
3 displayName: 'standard' 3 displayName: 'standard'
4 pool: 4 pool:
5 vmImage: ubuntu-latest 5 vmImage: ubuntu-latest
6 strategy: 6 strategy:
7 maxParallel: 10 7 maxParallel: 10
8 matrix: 8 matrix:
9 windows: 9 windows:
diff --git a/.ci/templates/build-testing.yml b/.ci/templates/build-testing.yml
index 101e52996..278efb6f5 100644
--- a/.ci/templates/build-testing.yml
+++ b/.ci/templates/build-testing.yml
@@ -3,7 +3,7 @@ jobs:
3 displayName: 'testing' 3 displayName: 'testing'
4 pool: 4 pool:
5 vmImage: ubuntu-latest 5 vmImage: ubuntu-latest
6 strategy: 6 strategy:
7 maxParallel: 10 7 maxParallel: 10
8 matrix: 8 matrix:
9 windows: 9 windows:
diff --git a/.ci/templates/release.yml b/.ci/templates/release.yml
deleted file mode 100644
index 60bebd2aa..000000000
--- a/.ci/templates/release.yml
+++ /dev/null
@@ -1,29 +0,0 @@
1steps:
2 - task: DownloadPipelineArtifact@2
3 displayName: 'Download Windows Release'
4 inputs:
5 artifactName: 'yuzu-$(BuildName)-windows-mingw'
6 buildType: 'current'
7 targetPath: '$(Build.ArtifactStagingDirectory)'
8 - task: DownloadPipelineArtifact@2
9 displayName: 'Download Linux Release'
10 inputs:
11 artifactName: 'yuzu-$(BuildName)-linux'
12 buildType: 'current'
13 targetPath: '$(Build.ArtifactStagingDirectory)'
14 - task: DownloadPipelineArtifact@2
15 displayName: 'Download Release Point'
16 inputs:
17 artifactName: 'yuzu-$(BuildName)-release-point'
18 buildType: 'current'
19 targetPath: '$(Build.ArtifactStagingDirectory)'
20 - script: echo '##vso[task.setvariable variable=tagcommit]' && cat $(Build.ArtifactStagingDirectory)/tag-commit.sha
21 displayName: 'Calculate Release Point'
22 - task: GitHubRelease@0
23 inputs:
24 gitHubConnection: $(GitHubReleaseConnectionName)
25 repositoryName: '$(GitHubReleaseRepoName)'
26 action: 'create'
27 target: $(variables.tagcommit)
28 title: 'yuzu $(BuildName) #$(Build.BuildId)'
29 assets: '$(Build.ArtifactStagingDirectory)/*'