mirror of
https://github.com/par274/sharpemu.git
synced 2026-07-16 05:21:32 +00:00
288 lines
9.5 KiB
YAML
288 lines
9.5 KiB
YAML
# Copyright (C) 2026 SharpEmu Emulator Project
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
name: Build and Release
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- "**"
|
|
paths-ignore:
|
|
- "**/*.md"
|
|
- "**/*.png"
|
|
- "**/*.jpeg"
|
|
- "**/*.jpg"
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
paths-ignore:
|
|
- "**/*.md"
|
|
- "**/*.png"
|
|
- "**/*.jpeg"
|
|
- "**/*.jpg"
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
concurrency:
|
|
group: build-release-${{ github.event_name }}-${{ github.ref }}
|
|
cancel-in-progress: ${{ github.event_name == 'push' }}
|
|
|
|
jobs:
|
|
init:
|
|
name: Init
|
|
runs-on: ubuntu-latest
|
|
outputs:
|
|
release-name: ${{ steps.vars.outputs.release-name }}
|
|
release-tag: ${{ steps.vars.outputs.release-tag }}
|
|
safe-ref: ${{ steps.vars.outputs.safe-ref }}
|
|
short-sha: ${{ steps.vars.outputs.short-sha }}
|
|
version: ${{ steps.vars.outputs.version }}
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v6
|
|
|
|
- name: Compute workflow variables
|
|
id: vars
|
|
shell: bash
|
|
run: |
|
|
short_sha="${GITHUB_SHA::7}"
|
|
safe_ref="$(echo "${GITHUB_REF_NAME}" | tr '[:upper:]' '[:lower:]' | sed 's#[^a-z0-9._-]#-#g')"
|
|
version="$(python3 -c 'import sys, xml.etree.ElementTree as ET; version = ET.parse("Directory.Build.props").getroot().findtext(".//SharpEmuVersion"); sys.exit("Directory.Build.props is missing SharpEmuVersion") if not version or not version.strip() else print(version.strip())')"
|
|
release_tag="v${version}"
|
|
release_name="SharpEmu v${version}"
|
|
|
|
{
|
|
echo "short-sha=${short_sha}"
|
|
echo "safe-ref=${safe_ref}"
|
|
echo "release-tag=${release_tag}"
|
|
echo "release-name=${release_name}"
|
|
echo "version=${version}"
|
|
} >> "$GITHUB_OUTPUT"
|
|
|
|
reuse:
|
|
name: REUSE Compliance
|
|
needs: init
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v6
|
|
|
|
- name: Run REUSE lint
|
|
uses: fsfe/reuse-action@v6
|
|
|
|
build:
|
|
name: Build Archive
|
|
needs:
|
|
- init
|
|
- reuse
|
|
runs-on: windows-latest
|
|
env:
|
|
DOTNET_NOLOGO: true
|
|
NUGET_PACKAGES: ${{ github.workspace }}\.nuget\packages
|
|
PUBLISH_DIR: ${{ github.workspace }}\artifacts\publish\win-x64
|
|
RELEASE_DIR: ${{ github.workspace }}\artifacts\release
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v6
|
|
|
|
- name: Setup .NET SDK
|
|
uses: actions/setup-dotnet@v5
|
|
with:
|
|
dotnet-version: 10.0.103
|
|
cache: true
|
|
cache-dependency-path: |
|
|
Directory.Packages.props
|
|
src/**/packages.lock.json
|
|
|
|
- name: Install Windows native GPU dependencies
|
|
shell: pwsh
|
|
run: |
|
|
& "$env:VCPKG_INSTALLATION_ROOT\vcpkg.exe" install sdl3:x64-windows vulkan:x64-windows
|
|
|
|
cmake `
|
|
-S src/SharpEmu.Gpu.Vulkan.Native `
|
|
-B artifacts/native/gpu-vulkan `
|
|
-A x64 `
|
|
-DCMAKE_TOOLCHAIN_FILE="$env:VCPKG_INSTALLATION_ROOT/scripts/buildsystems/vcpkg.cmake" `
|
|
-DVCPKG_TARGET_TRIPLET=x64-windows `
|
|
-DBUILD_TESTING=OFF
|
|
|
|
- name: Restore solution
|
|
run: dotnet restore SharpEmu.slnx --locked-mode
|
|
|
|
- name: Build solution
|
|
run: dotnet build SharpEmu.slnx -c Release --no-restore
|
|
|
|
- name: Validate synthetic shaders
|
|
run: dotnet run --project tools/SharpEmu.Tools.ShaderDump/SharpEmu.Tools.ShaderDump.csproj -c Release -- artifacts/shader-dump
|
|
|
|
- name: Publish win-x64 CLI
|
|
run: dotnet publish src/SharpEmu.CLI/SharpEmu.CLI.csproj -c Release -r win-x64 --self-contained true --no-restore -p:PublishDir="${env:PUBLISH_DIR}"
|
|
|
|
- name: Verify Windows native GPU runtime
|
|
shell: pwsh
|
|
run: |
|
|
$required = @(
|
|
(Join-Path $env:PUBLISH_DIR 'sharpemu_gpu_vulkan.dll'),
|
|
(Join-Path $env:PUBLISH_DIR 'SDL3.dll')
|
|
)
|
|
foreach ($path in $required) {
|
|
if (-not (Test-Path $path)) {
|
|
throw "Missing native GPU runtime: $path"
|
|
}
|
|
}
|
|
|
|
- name: Create release archive
|
|
run: |
|
|
New-Item -ItemType Directory -Path $env:RELEASE_DIR -Force | Out-Null
|
|
|
|
$archiveName = "sharpemu-${{ needs.init.outputs.version }}-win-x64-${{ needs.init.outputs.short-sha }}.zip"
|
|
$archivePath = Join-Path $env:RELEASE_DIR $archiveName
|
|
if (Test-Path $archivePath) {
|
|
Remove-Item $archivePath -Force
|
|
}
|
|
|
|
Compress-Archive -Path (Join-Path $env:PUBLISH_DIR '*') -DestinationPath $archivePath -CompressionLevel Optimal
|
|
|
|
- name: Upload build artifact
|
|
uses: actions/upload-artifact@v7
|
|
with:
|
|
name: sharpemu-win-x64-${{ needs.init.outputs.short-sha }}
|
|
path: ${{ env.RELEASE_DIR }}\sharpemu-${{ needs.init.outputs.version }}-win-x64-${{ needs.init.outputs.short-sha }}.zip
|
|
if-no-files-found: error
|
|
|
|
build-posix:
|
|
name: Build ${{ matrix.rid }}
|
|
needs:
|
|
- init
|
|
- reuse
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
include:
|
|
- os: ubuntu-latest
|
|
rid: linux-x64
|
|
- os: macos-latest
|
|
rid: osx-x64
|
|
env:
|
|
DOTNET_NOLOGO: true
|
|
NUGET_PACKAGES: ${{ github.workspace }}/.nuget/packages
|
|
PUBLISH_DIR: ${{ github.workspace }}/artifacts/publish/${{ matrix.rid }}
|
|
RELEASE_DIR: ${{ github.workspace }}/artifacts/release
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v6
|
|
|
|
- name: Setup .NET SDK
|
|
uses: actions/setup-dotnet@v5
|
|
with:
|
|
dotnet-version: 10.0.103
|
|
cache: true
|
|
cache-dependency-path: |
|
|
Directory.Packages.props
|
|
src/**/packages.lock.json
|
|
|
|
- name: Install Linux native GPU dependencies
|
|
if: matrix.rid == 'linux-x64'
|
|
run: |
|
|
sudo apt-get update
|
|
sudo apt-get install --yes \
|
|
autoconf \
|
|
autoconf-archive \
|
|
automake \
|
|
libtool \
|
|
libvulkan-dev \
|
|
pkg-config
|
|
"$VCPKG_INSTALLATION_ROOT/vcpkg" install sdl3:x64-linux
|
|
cmake \
|
|
-S src/SharpEmu.Gpu.Vulkan.Native \
|
|
-B artifacts/native/gpu-vulkan \
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
-DCMAKE_TOOLCHAIN_FILE="$VCPKG_INSTALLATION_ROOT/scripts/buildsystems/vcpkg.cmake" \
|
|
-DVCPKG_TARGET_TRIPLET=x64-linux \
|
|
-DBUILD_TESTING=OFF
|
|
|
|
- name: Install macOS native GPU dependencies
|
|
if: matrix.rid == 'osx-x64'
|
|
run: |
|
|
brew install sdl3 vulkan-loader vulkan-headers
|
|
cmake \
|
|
-S src/SharpEmu.Gpu.Vulkan.Native \
|
|
-B artifacts/native/gpu-vulkan \
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
-DCMAKE_PREFIX_PATH="$(brew --prefix)" \
|
|
-DBUILD_TESTING=OFF
|
|
|
|
- name: Restore solution
|
|
run: dotnet restore SharpEmu.slnx --locked-mode
|
|
|
|
- name: Build solution
|
|
run: dotnet build SharpEmu.slnx -c Release --no-restore
|
|
|
|
- name: Publish ${{ matrix.rid }} CLI
|
|
run: dotnet publish src/SharpEmu.CLI/SharpEmu.CLI.csproj -c Release -r ${{ matrix.rid }} --self-contained true --no-restore -p:PublishDir="$PUBLISH_DIR"
|
|
|
|
- name: Stage MoltenVK next to the build
|
|
if: matrix.rid == 'osx-x64'
|
|
run: scripts/fetch-macos-moltenvk.sh "$PUBLISH_DIR"
|
|
|
|
- name: Create release archive
|
|
run: |
|
|
mkdir -p "$RELEASE_DIR"
|
|
# tar keeps the executable bit, which zip would drop.
|
|
tar -czf "$RELEASE_DIR/sharpemu-${{ needs.init.outputs.version }}-${{ matrix.rid }}-${{ needs.init.outputs.short-sha }}.tar.gz" \
|
|
-C "$PUBLISH_DIR" .
|
|
|
|
- name: Upload build artifact
|
|
uses: actions/upload-artifact@v7
|
|
with:
|
|
name: sharpemu-${{ matrix.rid }}-${{ needs.init.outputs.short-sha }}
|
|
path: ${{ env.RELEASE_DIR }}/sharpemu-${{ needs.init.outputs.version }}-${{ matrix.rid }}-${{ needs.init.outputs.short-sha }}.tar.gz
|
|
if-no-files-found: error
|
|
|
|
release:
|
|
name: Publish GitHub Release
|
|
needs:
|
|
- init
|
|
- build
|
|
- build-posix
|
|
if: github.event_name == 'workflow_dispatch' || (github.event_name == 'push' && github.ref == 'refs/heads/main')
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: write
|
|
steps:
|
|
- name: Download build artifacts
|
|
uses: actions/download-artifact@v8
|
|
with:
|
|
path: release
|
|
|
|
- name: Create or update release
|
|
shell: bash
|
|
env:
|
|
GH_REPO: ${{ github.repository }}
|
|
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
RELEASE_NAME: ${{ needs.init.outputs.release-name }}
|
|
RELEASE_TAG: ${{ needs.init.outputs.release-tag }}
|
|
VERSION: ${{ needs.init.outputs.version }}
|
|
run: |
|
|
mapfile -t assets < <(find release -type f \( -name '*.zip' -o -name '*.tar.gz' \) | sort)
|
|
if [ "${#assets[@]}" -eq 0 ]; then
|
|
echo "No release assets found." >&2
|
|
exit 1
|
|
fi
|
|
|
|
notes="Automated SharpEmu v${VERSION} build for commit ${GITHUB_SHA}."
|
|
|
|
if gh release view "${RELEASE_TAG}" >/dev/null 2>&1; then
|
|
gh release upload "${RELEASE_TAG}" "${assets[@]}" --clobber
|
|
gh release edit "${RELEASE_TAG}" --title "${RELEASE_NAME}" --notes "${notes}"
|
|
else
|
|
gh release create "${RELEASE_TAG}" "${assets[@]}" \
|
|
--title "${RELEASE_NAME}" \
|
|
--notes "${notes}" \
|
|
--target "${GITHUB_SHA}"
|
|
fi
|