summaryrefslogblamecommitdiffstats
path: root/.ci/yuzu-mainline-step2.yml
blob: 825be121ae843074f8ebb5c9e27e62312a2a0513 (plain) (tree)
1
2
3
4
5
6
7
8
9


                                                    


        


                                                           
       
              
                      
       
              
                         

















                                                    
                                  
                  


                              
                         

                       
                           








                                                    
                                  
                
                        


             

               
                         

                            
          
                                              
# SPDX-FileCopyrightText: 2019 yuzu Emulator Project
# SPDX-License-Identifier: GPL-2.0-or-later

trigger:
- master

variables:
  DisplayVersion: $[counter(variables['DisplayPrefix'], 1)]

stages:
- stage: build
  displayName: 'build'
  jobs:
  - job: build
    timeoutInMinutes: 120
    displayName: 'standard'
    pool:
      vmImage: ubuntu-latest
    strategy:
      maxParallel: 10
      matrix:
        linux:
          BuildSuffix: 'linux'
          ScriptFolder: 'linux'
    steps:
    - template: ./templates/sync-source.yml
      parameters:
        artifactSource: $(parameters.artifactSource)
        needSubmodules: 'true'
    - template: ./templates/build-single.yml
      parameters:
        artifactSource: 'false'
        cache: 'true'
        version: $(DisplayVersion)
- stage: build_win
  displayName: 'build-windows'
  jobs:
  - job: build
    timeoutInMinutes: 120
    displayName: 'msvc'
    pool:
      vmImage: windows-2022
    steps:
    - template: ./templates/sync-source.yml
      parameters:
        artifactSource: $(parameters.artifactSource)
        needSubmodules: 'true'
    - template: ./templates/build-msvc.yml
      parameters:
        artifactSource: 'false'
        cache: 'true'
        version: $(DisplayVersion)
- stage: release
  displayName: 'release'
  dependsOn:
  - build
  - build_win
  jobs:
  - job: github
    displayName: 'github'
    pool:
      vmImage: ubuntu-latest
    steps:
    - template: ./templates/release-github.yml