summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFlame Sage <chris062689@gmail.com>2019-07-20 21:20:53 +0200
committerGitHub <noreply@github.com>2019-07-20 21:20:53 +0200
commita2edb27158dc721647632b78f97b6cd5c4288744 (patch)
tree5735c246732aca88a1cf2bd88d745bfc2ac0221a
parentMerge pull request #2687 from lioncash/tls-process (diff)
parentazure: Fix clang-format and releases (diff)
downloadyuzu-a2edb27158dc721647632b78f97b6cd5c4288744.tar
yuzu-a2edb27158dc721647632b78f97b6cd5c4288744.tar.gz
yuzu-a2edb27158dc721647632b78f97b6cd5c4288744.tar.bz2
yuzu-a2edb27158dc721647632b78f97b6cd5c4288744.tar.lz
yuzu-a2edb27158dc721647632b78f97b6cd5c4288744.tar.xz
yuzu-a2edb27158dc721647632b78f97b6cd5c4288744.tar.zst
yuzu-a2edb27158dc721647632b78f97b6cd5c4288744.zip
-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:
displayName: 'standard'
pool:
vmImage: ubuntu-latest
- strategy:
+ strategy:
maxParallel: 10
matrix:
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:
displayName: 'testing'
pool:
vmImage: ubuntu-latest
- strategy:
+ strategy:
maxParallel: 10
matrix:
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 @@
-steps:
- - task: DownloadPipelineArtifact@2
- displayName: 'Download Windows Release'
- inputs:
- artifactName: 'yuzu-$(BuildName)-windows-mingw'
- buildType: 'current'
- targetPath: '$(Build.ArtifactStagingDirectory)'
- - task: DownloadPipelineArtifact@2
- displayName: 'Download Linux Release'
- inputs:
- artifactName: 'yuzu-$(BuildName)-linux'
- buildType: 'current'
- targetPath: '$(Build.ArtifactStagingDirectory)'
- - task: DownloadPipelineArtifact@2
- displayName: 'Download Release Point'
- inputs:
- artifactName: 'yuzu-$(BuildName)-release-point'
- buildType: 'current'
- targetPath: '$(Build.ArtifactStagingDirectory)'
- - script: echo '##vso[task.setvariable variable=tagcommit]' && cat $(Build.ArtifactStagingDirectory)/tag-commit.sha
- displayName: 'Calculate Release Point'
- - task: GitHubRelease@0
- inputs:
- gitHubConnection: $(GitHubReleaseConnectionName)
- repositoryName: '$(GitHubReleaseRepoName)'
- action: 'create'
- target: $(variables.tagcommit)
- title: 'yuzu $(BuildName) #$(Build.BuildId)'
- assets: '$(Build.ArtifactStagingDirectory)/*'