2020-03-02 22:55:05 +00:00
|
|
|
trigger:
|
2020-03-03 02:42:28 +00:00
|
|
|
branches:
|
|
|
|
include:
|
|
|
|
- master
|
|
|
|
tags:
|
|
|
|
exclude:
|
|
|
|
- '*'
|
2020-03-14 19:50:17 +00:00
|
|
|
pr:
|
|
|
|
branches:
|
|
|
|
include:
|
|
|
|
- master
|
2020-03-03 02:42:28 +00:00
|
|
|
jobs:
|
|
|
|
- job: Linux_Build
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
Clang:
|
|
|
|
COMPILER: clang
|
|
|
|
GCC:
|
|
|
|
COMPILER: gcc
|
|
|
|
DEPLOY_APPIMAGE: true
|
|
|
|
variables:
|
|
|
|
CCACHE_DIR: $(Pipeline.Workspace)/ccache
|
2020-04-07 02:53:23 +00:00
|
|
|
IS_AZURE: true
|
2020-11-22 23:07:21 +00:00
|
|
|
UPLOAD_COMMIT_HASH: d812f1254a1157c80fd402f94446310560f54e5f
|
|
|
|
UPLOAD_REPO_FULL_NAME: "RPCS3/rpcs3-binaries-linux"
|
2020-03-03 02:42:28 +00:00
|
|
|
pool:
|
|
|
|
vmImage: 'ubuntu-latest'
|
|
|
|
steps:
|
2020-03-28 20:13:55 +00:00
|
|
|
- task: Cache@2
|
2020-03-03 02:42:28 +00:00
|
|
|
inputs:
|
|
|
|
key: ccache | $(Agent.OS) | $(COMPILER)
|
|
|
|
path: $(CCACHE_DIR)
|
2020-03-27 13:37:27 +00:00
|
|
|
displayName: ccache
|
2020-03-14 19:50:17 +00:00
|
|
|
|
2020-03-03 02:42:28 +00:00
|
|
|
- bash: |
|
2020-10-29 01:14:52 +00:00
|
|
|
docker pull --quiet rpcs3/rpcs3-travis-xenial:1.6
|
2020-03-03 02:42:28 +00:00
|
|
|
docker run \
|
|
|
|
-v $(pwd):/rpcs3 \
|
2020-11-24 00:23:01 +00:00
|
|
|
--env-file .ci/docker.env \
|
2020-03-03 02:42:28 +00:00
|
|
|
-v $CCACHE_DIR:/root/.ccache \
|
|
|
|
-v $BUILD_ARTIFACTSTAGINGDIRECTORY:/root/artifacts \
|
2020-10-29 01:14:52 +00:00
|
|
|
rpcs3/rpcs3-travis-xenial:1.6 \
|
2020-04-07 02:53:23 +00:00
|
|
|
/rpcs3/.ci/build-linux.sh
|
2020-03-03 02:42:28 +00:00
|
|
|
displayName: Docker setup and build
|
2020-03-14 19:50:17 +00:00
|
|
|
|
2020-03-03 02:42:28 +00:00
|
|
|
- publish: $(Build.ArtifactStagingDirectory)
|
2020-06-08 01:31:12 +00:00
|
|
|
condition: and(succeeded(), eq(variables['COMPILER'], 'gcc'))
|
|
|
|
artifact: RPCS3 for Linux
|
2020-03-27 13:37:27 +00:00
|
|
|
|
2020-11-22 23:07:21 +00:00
|
|
|
- bash: .ci/github-upload.sh
|
|
|
|
condition: and(ne(variables['Build.Reason'], 'PullRequest'), eq(variables['Build.Repository.Name'], 'RPCS3/rpcs3'), eq(variables['Build.SourceBranch'], 'refs/heads/master'), eq(variables['COMPILER'], 'gcc'))
|
|
|
|
displayName: Push build to GitHub
|
|
|
|
env:
|
|
|
|
RPCS3_TOKEN: $(RPCS3-Token)
|
|
|
|
|
2020-03-27 13:37:27 +00:00
|
|
|
- job: Windows_Build
|
|
|
|
variables:
|
|
|
|
COMPILER: msvc
|
2020-06-11 03:14:09 +00:00
|
|
|
QT_VER: '5.14.2'
|
|
|
|
QT_DATE: '202003291224'
|
2020-03-27 13:37:27 +00:00
|
|
|
QTDIR: C:\Qt\$(QT_VER)\msvc2017_64
|
2020-10-29 01:14:52 +00:00
|
|
|
VULKAN_VER: '1.2.154.1'
|
|
|
|
VULKAN_SDK_SHA: 'b64471f3a720e649c1fae6535ea83b8c642655ebed1485bfdf15bf4d88f746d9'
|
2020-03-27 13:37:27 +00:00
|
|
|
VULKAN_SDK: C:\VulkanSDK\$(VULKAN_VER)
|
|
|
|
CACHE_DIR: ./cache
|
2020-11-22 23:07:21 +00:00
|
|
|
UPLOAD_COMMIT_HASH: 7d09e3be30805911226241afbb14f8cdc2eb054e
|
|
|
|
UPLOAD_REPO_FULL_NAME: "RPCS3/rpcs3-binaries-win"
|
2020-03-27 13:37:27 +00:00
|
|
|
|
|
|
|
pool:
|
|
|
|
vmImage: "windows-latest"
|
|
|
|
|
|
|
|
steps:
|
2020-05-25 23:33:59 +00:00
|
|
|
- bash: .ci/get_keys-windows.sh
|
|
|
|
displayName: Get Cache Keys
|
|
|
|
|
2020-03-28 20:13:55 +00:00
|
|
|
- task: Cache@2
|
2020-03-27 13:37:27 +00:00
|
|
|
inputs:
|
2020-05-25 23:33:59 +00:00
|
|
|
key: $(Agent.OS) | $(COMPILER) | "$(QT_VER)" | $(VULKAN_SDK_SHA) | llvm.lock | glslang.lock
|
2020-03-27 13:37:27 +00:00
|
|
|
path: $(CACHE_DIR)
|
2020-05-25 23:33:59 +00:00
|
|
|
restoreKeys: |
|
|
|
|
$(Agent.OS) | $(COMPILER)
|
2020-03-27 13:37:27 +00:00
|
|
|
displayName: Cache
|
|
|
|
|
2020-04-07 02:53:23 +00:00
|
|
|
- bash: .ci/setup-windows.sh
|
2020-03-27 13:37:27 +00:00
|
|
|
displayName: Download and unpack dependencies
|
|
|
|
|
2020-04-07 02:53:23 +00:00
|
|
|
- bash: .ci/export-azure-vars.sh
|
2020-03-28 00:19:44 +00:00
|
|
|
displayName: Export Variables
|
|
|
|
|
2020-05-23 00:04:58 +00:00
|
|
|
- task: MSBuild@1
|
|
|
|
inputs:
|
|
|
|
solution: './Vulkan/spirv-tools-build/spirv-tools-build.vcxproj'
|
|
|
|
maximumCpuCount: true
|
|
|
|
platform: x64
|
|
|
|
configuration: 'Release'
|
|
|
|
displayName: Compile SPIRV-Tools
|
|
|
|
|
2020-03-27 13:37:27 +00:00
|
|
|
- task: VSBuild@1
|
|
|
|
inputs:
|
|
|
|
solution: 'rpcs3.sln'
|
2020-05-23 00:04:58 +00:00
|
|
|
maximumCpuCount: true
|
2020-03-27 13:37:27 +00:00
|
|
|
platform: x64
|
|
|
|
configuration: 'Release - LLVM'
|
2020-08-26 19:18:04 +00:00
|
|
|
msbuildArgs: '/p:VCToolsVersion=14.25.28610'
|
2020-03-27 13:37:27 +00:00
|
|
|
displayName: Compile RPCS3
|
|
|
|
|
2020-04-07 02:53:23 +00:00
|
|
|
- bash: .ci/deploy-windows.sh
|
2020-03-27 13:37:27 +00:00
|
|
|
displayName: Pack up build artifacts
|
|
|
|
|
|
|
|
- publish: $(Build.ArtifactStagingDirectory)
|
2020-06-08 01:31:12 +00:00
|
|
|
condition: succeeded()
|
|
|
|
artifact: RPCS3 for Windows
|
2020-03-27 13:37:27 +00:00
|
|
|
|
2020-11-22 23:07:21 +00:00
|
|
|
- bash: .ci/github-upload.sh
|
2020-08-16 01:30:25 +00:00
|
|
|
condition: and(ne(variables['Build.Reason'], 'PullRequest'), eq(variables['Build.Repository.Name'], 'RPCS3/rpcs3'), eq(variables['Build.SourceBranch'], 'refs/heads/master'))
|
2020-03-27 13:37:27 +00:00
|
|
|
displayName: Push build to GitHub
|
2020-08-15 19:46:53 +00:00
|
|
|
env:
|
|
|
|
RPCS3_TOKEN: $(RPCS3-Token)
|