mirror of
https://github.com/par274/sharpemu.git
synced 2026-07-16 00:40:59 +00:00
257 lines
8.6 KiB
YAML
257 lines
8.6 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
|
|
Directory.Build.props
|
|
|
|
- name: Restore solution
|
|
run: dotnet restore SharpEmu.slnx
|
|
|
|
- name: Build solution
|
|
run: dotnet build SharpEmu.slnx -c Release --no-restore
|
|
|
|
# Runs every test project in the solution; a test failure fails the build, as
|
|
# does an aerolib.bin generation failure in the build step above (the MSBuild
|
|
# task logs an error and returns false).
|
|
- name: Run tests
|
|
run: dotnet test SharpEmu.slnx -c Release --no-build --verbosity normal
|
|
|
|
- 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: Create release archive
|
|
run: |
|
|
New-Item -ItemType Directory -Path $env:RELEASE_DIR -Force | Out-Null
|
|
|
|
$archiveName = "sharpemu-${{ needs.init.outputs.version }}-win-x64.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.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
|
|
Directory.Build.props
|
|
|
|
- name: Restore solution
|
|
run: dotnet restore SharpEmu.slnx
|
|
|
|
- name: Build solution
|
|
run: dotnet build SharpEmu.slnx -c Release --no-restore
|
|
|
|
# Also runs on Linux/macOS: the aerolib.bin MSBuild task does platform-sensitive
|
|
# path handling, so a cross-platform generation regression surfaces here.
|
|
- name: Run tests
|
|
run: dotnet test SharpEmu.slnx -c Release --no-build --verbosity normal
|
|
|
|
- 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 }}.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 }}.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
|
|
|
|
keep=()
|
|
for asset_path in "${assets[@]}"; do
|
|
keep+=("$(basename "${asset_path}")")
|
|
done
|
|
mapfile -t release_assets < <(gh release view "${RELEASE_TAG}" --json assets --jq '.assets[].name' | sort)
|
|
for asset in "${release_assets[@]}"; do
|
|
case "${asset}" in
|
|
sharpemu-${VERSION}-*.zip|sharpemu-${VERSION}-*.tar.gz)
|
|
if ! printf '%s\n' "${keep[@]}" | grep -Fxq "${asset}"; then
|
|
gh release delete-asset "${RELEASE_TAG}" "${asset}" --yes
|
|
fi
|
|
;;
|
|
esac
|
|
done
|