2021-07-07 01:23:04 +00:00
|
|
|
name: 🖥️ Windows Builds
|
2020-09-11 05:56:45 +00:00
|
|
|
|
|
|
|
# Controls when the action will run. Triggers the workflow on push or pull request
|
|
|
|
# events but only for the master branch
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
2020-09-18 01:19:04 +00:00
|
|
|
paths-ignore:
|
2021-05-07 13:45:52 +00:00
|
|
|
- '**/*.md'
|
|
|
|
- '.clang-format'
|
|
|
|
- '.codacy.yaml'
|
|
|
|
- '.github/*'
|
|
|
|
- '.github/workflows/lint-gamedb.yml'
|
|
|
|
- '.github/workflows/linux-workflow.yml'
|
|
|
|
- '.github/workflows/macos-workflow.yml'
|
|
|
|
- '.github/workflows/scripts/linux/**'
|
|
|
|
- '.github/workflows/scripts/validation/**'
|
|
|
|
- '.gitignore'
|
|
|
|
- 'bin/PCSX2_keys.ini.default'
|
|
|
|
- 'build.sh'
|
|
|
|
- 'buildbot.xml'
|
|
|
|
- 'linux_various/**'
|
|
|
|
- 'mscompile.cmd'
|
|
|
|
- 'pcsx2/CDVD/Linux/**'
|
|
|
|
- 'pcsx2/DEV9/Linux/**'
|
|
|
|
- 'pcsx2/Linux/**'
|
|
|
|
- 'pcsx2/PAD/Linux/**'
|
|
|
|
- 'pcsx2/SPU2/Linux/**'
|
|
|
|
- 'pcsx2/USB/linux/**'
|
2020-09-11 05:56:45 +00:00
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- master
|
2020-09-18 01:19:04 +00:00
|
|
|
paths-ignore:
|
2021-05-07 13:45:52 +00:00
|
|
|
- '**/*.md'
|
|
|
|
- '.clang-format'
|
|
|
|
- '.codacy.yaml'
|
|
|
|
- '.github/*'
|
|
|
|
- '.github/workflows/lint-gamedb.yml'
|
|
|
|
- '.github/workflows/linux-workflow.yml'
|
|
|
|
- '.github/workflows/macos-workflow.yml'
|
|
|
|
- '.github/workflows/scripts/linux/**'
|
|
|
|
- '.github/workflows/scripts/validation/**'
|
|
|
|
- '.gitignore'
|
|
|
|
- 'bin/PCSX2_keys.ini.default'
|
|
|
|
- 'build.sh'
|
|
|
|
- 'buildbot.xml'
|
|
|
|
- 'linux_various/**'
|
|
|
|
- 'mscompile.cmd'
|
|
|
|
- 'pcsx2/CDVD/Linux/**'
|
|
|
|
- 'pcsx2/DEV9/Linux/**'
|
|
|
|
- 'pcsx2/Linux/**'
|
|
|
|
- 'pcsx2/PAD/Linux/**'
|
|
|
|
- 'pcsx2/SPU2/Linux/**'
|
|
|
|
- 'pcsx2/USB/linux/**'
|
2021-03-16 04:43:08 +00:00
|
|
|
workflow_dispatch:
|
|
|
|
inputs:
|
|
|
|
retainDebugArtifacts:
|
2021-04-20 02:21:39 +00:00
|
|
|
description: 'Retain debug artifacts (.pdb/.exp/.lib) for an easier debugging experience. (true|false)'
|
2021-03-16 04:43:08 +00:00
|
|
|
required: true
|
|
|
|
default: 'false'
|
2020-09-11 05:56:45 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
strategy:
|
|
|
|
# Prevent one build from failing everything (although maybe those should be included as experimental builds instead)
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
os: [windows-2019]
|
|
|
|
platform: [Win32, x64]
|
2021-08-11 04:26:49 +00:00
|
|
|
configuration: [Release, Release AVX2, CMake]
|
2020-09-11 05:56:45 +00:00
|
|
|
experimental: [false]
|
|
|
|
|
2021-05-07 13:45:52 +00:00
|
|
|
name: ${{ matrix.platform }} | ${{ matrix.configuration }}
|
2020-09-11 05:56:45 +00:00
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
continue-on-error: ${{ matrix.experimental }}
|
|
|
|
# Set some sort of timeout in the event of run-away builds. We are limited on concurrent jobs so, get rid of them.
|
|
|
|
timeout-minutes: 30
|
|
|
|
|
2021-05-07 13:45:52 +00:00
|
|
|
env:
|
|
|
|
POWERSHELL_TELEMETRY_OPTOUT: 1
|
|
|
|
|
2020-09-11 05:56:45 +00:00
|
|
|
steps:
|
|
|
|
# NOTE - useful for debugging
|
2021-04-29 01:20:18 +00:00
|
|
|
# - name: Dump GitHub context
|
|
|
|
# env:
|
|
|
|
# GITHUB_CONTEXT: ${{ toJson(github) }}
|
2021-05-07 13:45:52 +00:00
|
|
|
# run: echo "$GITHUB_CONTEXT"
|
2020-09-11 05:56:45 +00:00
|
|
|
|
2020-09-18 18:26:32 +00:00
|
|
|
- name: Checkout Repository
|
2020-09-11 05:56:45 +00:00
|
|
|
uses: actions/checkout@v2
|
2020-09-18 18:26:32 +00:00
|
|
|
|
|
|
|
- name: Checkout Submodules
|
|
|
|
if: steps.cache-submodules.outputs.cache-hit != 'true'
|
2021-05-07 13:45:52 +00:00
|
|
|
run: git submodule update --init --recursive -j $env:NUMBER_OF_PROCESSORS
|
2020-09-11 05:56:45 +00:00
|
|
|
|
2020-09-20 17:10:14 +00:00
|
|
|
- name: Verify VS Project Files
|
2021-05-07 13:45:52 +00:00
|
|
|
run: .github\workflows\scripts\windows\validate-vs-filters.ps1
|
2021-08-11 04:26:49 +00:00
|
|
|
if: matrix.configuration != 'CMake'
|
2020-09-20 17:10:14 +00:00
|
|
|
|
2020-09-11 05:56:45 +00:00
|
|
|
- name: Setup msbuild
|
2021-05-07 13:45:52 +00:00
|
|
|
uses: microsoft/setup-msbuild@v1
|
2021-08-11 04:26:49 +00:00
|
|
|
if: matrix.configuration != 'CMake'
|
|
|
|
|
|
|
|
- name: Generate CMake
|
|
|
|
id: cmake
|
2021-08-11 19:15:58 +00:00
|
|
|
shell: cmd
|
2021-08-11 04:26:49 +00:00
|
|
|
run: |
|
2021-08-11 19:15:58 +00:00
|
|
|
if "${{ github.event.inputs.retainDebugArtifacts }}"=="true" (SET type=RelWithDebInfo) else (SET type=Release)
|
|
|
|
if "${{ matrix.platform }}"=="Win32" (SET vcvars=vcvarsamd64_x86.bat) else (SET vcvars=vcvars64.bat)
|
|
|
|
call "%ProgramFiles(x86)%\Microsoft Visual Studio\2019\Enterprise\VC\Auxiliary\Build\%vcvars%"
|
|
|
|
echo ::set-output name=buildtype::%type%
|
|
|
|
echo ::set-output name=vcvars::%vcvars%
|
|
|
|
cmake . -B build -DCMAKE_BUILD_TYPE=%type% -G Ninja
|
2021-08-11 04:26:49 +00:00
|
|
|
if: matrix.configuration == 'CMake'
|
2020-09-11 05:56:45 +00:00
|
|
|
|
|
|
|
- name: Build PCSX2
|
2021-08-11 19:15:58 +00:00
|
|
|
shell: cmd
|
2021-01-24 22:56:12 +00:00
|
|
|
env:
|
|
|
|
# Set to 'true' to retain the .pdb / .exp / .lib, etc files which can be useful for repro'ing issues that only occur in the compiled .exe
|
2021-04-20 02:21:39 +00:00
|
|
|
RetainDebuggingArtifacts: ${{ github.event.inputs.retainDebugArtifacts == 'true' }}
|
2021-08-11 04:26:49 +00:00
|
|
|
run: |
|
2021-08-11 19:15:58 +00:00
|
|
|
if "${{ matrix.configuration }}"=="CMake" (
|
|
|
|
call "%ProgramFiles(x86)%\Microsoft Visual Studio\2019\Enterprise\VC\Auxiliary\Build\${{ steps.cmake.outputs.vcvars }}"
|
2021-08-11 04:26:49 +00:00
|
|
|
cmake --build build --config ${{ steps.cmake.outputs.buildtype }}
|
2021-08-11 19:15:58 +00:00
|
|
|
) else (
|
2021-08-11 04:26:49 +00:00
|
|
|
msbuild "PCSX2_suite.sln" /m /v:m /p:Configuration="${{ matrix.configuration }}" /p:Platform="${{ matrix.platform }}"
|
2021-08-11 19:15:58 +00:00
|
|
|
)
|
2020-09-11 05:56:45 +00:00
|
|
|
|
2021-01-07 00:52:32 +00:00
|
|
|
- name: Prepare Artifact Metadata
|
|
|
|
id: artifact-metadata
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
ARCH=$([ "${{ matrix.platform }}" == Win32 ] && echo "32bit" || echo "64bit")
|
2021-08-11 04:26:49 +00:00
|
|
|
case "${{ matrix.configuration }}" in
|
|
|
|
Release) SIMD="SSE4";;
|
|
|
|
*AVX2) SIMD="AVX2";;
|
|
|
|
CMake) SIMD="CMake"
|
2021-08-11 19:15:58 +00:00
|
|
|
cp build/pcsx2/PCSX2* bin/ ;;
|
2021-08-11 04:26:49 +00:00
|
|
|
*) SIMD="UNKNOWN";;
|
|
|
|
esac
|
2021-01-07 00:52:32 +00:00
|
|
|
if [ ${{ github.event_name }} == "pull_request" ]; then
|
|
|
|
PR_SHA=$(git rev-parse --short "${{ github.event.pull_request.head.sha }}")
|
2021-07-07 01:23:04 +00:00
|
|
|
ARTIFACT_NAME="PCSX2-${ARCH}-${SIMD}"
|
2021-01-07 00:52:32 +00:00
|
|
|
if [ ! -z "${{ github.event.pull_request.number }}" ]; then
|
|
|
|
PR_NUM=${{ github.event.pull_request.number }}
|
|
|
|
ARTIFACT_NAME="${ARTIFACT_NAME}-pr[${PR_NUM}]"
|
|
|
|
fi
|
|
|
|
ARTIFACT_NAME="${ARTIFACT_NAME}-sha[${PR_SHA}]"
|
|
|
|
if [ ! -z "${{ github.event.pull_request.title }}" ]; then
|
|
|
|
PR_TITLE=$(echo "${{ github.event.pull_request.title }}" | tr -cd '[a-zA-Z0-9[:space:]]_-')
|
|
|
|
ARTIFACT_NAME="${ARTIFACT_NAME}-title["${PR_TITLE}""
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
SHA=$(git rev-parse --short "$GITHUB_SHA")
|
2021-07-07 01:23:04 +00:00
|
|
|
ARTIFACT_NAME="PCSX2-${ARCH}-${SIMD}-sha[${SHA}"
|
2021-01-07 00:52:32 +00:00
|
|
|
fi
|
|
|
|
TRIMMED_ARTIFACT_NAME=$(printf "%.199s]" "$ARTIFACT_NAME")
|
|
|
|
echo "name=$TRIMMED_ARTIFACT_NAME"
|
|
|
|
echo "##[set-output name=name;]${TRIMMED_ARTIFACT_NAME}"
|
|
|
|
|
|
|
|
- name: Prepare Artifact Folder
|
|
|
|
shell: bash
|
2021-05-07 13:45:52 +00:00
|
|
|
working-directory: bin
|
2021-01-07 00:52:32 +00:00
|
|
|
run: |
|
2021-07-07 01:23:04 +00:00
|
|
|
retainDebugArtifacts=$([ "${{ github.event.inputs.retainDebugArtifacts }}" == "true" ] && echo "true" || echo "false")
|
|
|
|
if [ "${retainDebugArtifacts}" == "false" ]; then
|
|
|
|
ls ./
|
|
|
|
rm -f *.bsc *.exp *.ilk *.iobj *.ipdb *.lib *.pdb
|
|
|
|
fi
|
2021-01-07 00:52:32 +00:00
|
|
|
shopt -s extglob dotglob
|
2021-05-07 13:45:52 +00:00
|
|
|
mkdir -p "${{ steps.artifact-metadata.outputs.name }}"
|
2021-01-07 00:52:32 +00:00
|
|
|
mv !("${{ steps.artifact-metadata.outputs.name }}") "${{ steps.artifact-metadata.outputs.name }}"
|
|
|
|
shopt -u dotglob
|
|
|
|
|
2020-09-11 05:56:45 +00:00
|
|
|
- name: Upload artifact
|
|
|
|
uses: actions/upload-artifact@v2
|
|
|
|
continue-on-error: true
|
|
|
|
with:
|
2021-01-07 00:52:32 +00:00
|
|
|
name: ${{ steps.artifact-metadata.outputs.name }}
|
2020-09-11 05:56:45 +00:00
|
|
|
path: bin
|
2020-10-17 02:00:46 +00:00
|
|
|
retention-days: 30 # https://docs.github.com/en/free-pro-team@latest/actions/reference/usage-limits-billing-and-administration#artifact-and-log-retention-policy
|