2021-06-15 20:59:18 +08:00
|
|
|
on: [push, pull_request]
|
|
|
|
name: Continuous Integration
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
test:
|
|
|
|
name: Test
|
|
|
|
runs-on: ${{matrix.os.fullname}}
|
|
|
|
env:
|
|
|
|
OSU_EXECUTION_MODE: ${{matrix.threadingMode}}
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
os:
|
|
|
|
- { prettyname: Windows, fullname: windows-latest }
|
|
|
|
- { prettyname: macOS, fullname: macos-latest }
|
|
|
|
- { prettyname: Linux, fullname: ubuntu-latest }
|
|
|
|
threadingMode: ['SingleThread', 'MultiThreaded']
|
2021-06-23 23:55:40 +08:00
|
|
|
timeout-minutes: 60
|
2021-06-15 20:59:18 +08:00
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
|
|
|
|
- name: Install .NET 5.0.x
|
|
|
|
uses: actions/setup-dotnet@v1
|
|
|
|
with:
|
|
|
|
dotnet-version: "5.0.x"
|
|
|
|
|
|
|
|
# FIXME: libavformat is not included in Ubuntu. Let's fix that.
|
|
|
|
# https://github.com/ppy/osu-framework/issues/4349
|
|
|
|
# Remove this once https://github.com/actions/virtual-environments/issues/3306 has been resolved.
|
|
|
|
- name: Install libavformat-dev
|
|
|
|
if: ${{matrix.os.fullname == 'ubuntu-latest'}}
|
|
|
|
run: |
|
|
|
|
sudo apt-get update && \
|
|
|
|
sudo apt-get -y install libavformat-dev
|
|
|
|
|
|
|
|
- name: Compile
|
|
|
|
run: dotnet build -c Debug -warnaserror osu.Desktop.slnf
|
|
|
|
|
|
|
|
- name: Test
|
2021-11-24 14:26:40 +08:00
|
|
|
run: dotnet test $pwd/*.Tests/bin/Debug/*/*.Tests.dll --logger "trx;LogFileName=TestResults-${{matrix.os.prettyname}}-${{matrix.threadingMode}}.trx"
|
2021-06-15 20:59:18 +08:00
|
|
|
shell: pwsh
|
|
|
|
|
|
|
|
# Attempt to upload results even if test fails.
|
|
|
|
# https://docs.github.com/en/actions/reference/context-and-expression-syntax-for-github-actions#always
|
|
|
|
- name: Upload Test Results
|
|
|
|
uses: actions/upload-artifact@v2
|
|
|
|
if: ${{ always() }}
|
|
|
|
with:
|
|
|
|
name: osu-test-results-${{matrix.os.prettyname}}-${{matrix.threadingMode}}
|
2021-11-24 14:26:40 +08:00
|
|
|
path: ${{github.workspace}}/TestResults/TestResults-${{matrix.os.prettyname}}-${{matrix.threadingMode}}.trx
|
2021-06-15 20:59:18 +08:00
|
|
|
|
2021-10-24 23:25:53 +08:00
|
|
|
build-only-android:
|
|
|
|
name: Build only (Android)
|
2021-11-11 17:04:16 +08:00
|
|
|
runs-on: macos-latest
|
2021-10-24 23:25:53 +08:00
|
|
|
timeout-minutes: 60
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
|
2021-11-11 17:04:16 +08:00
|
|
|
# Pin Xamarin.Android version to 11.2 for now to avoid build failures caused by a Xamarin-side regression.
|
|
|
|
# See: https://github.com/xamarin/xamarin-android/issues/6284
|
|
|
|
# This can be removed/reverted when the fix makes it to upstream and is deployed on github runners.
|
|
|
|
- name: Set default Xamarin SDK version
|
|
|
|
run: |
|
|
|
|
$VM_ASSETS/select-xamarin-sdk-v2.sh --mono=6.12 --android=11.2
|
|
|
|
|
2021-10-24 23:25:53 +08:00
|
|
|
- name: Install .NET 5.0.x
|
|
|
|
uses: actions/setup-dotnet@v1
|
|
|
|
with:
|
|
|
|
dotnet-version: "5.0.x"
|
|
|
|
|
2021-11-11 17:04:16 +08:00
|
|
|
# Contrary to seemingly any other msbuild, msbuild running on macOS/Mono
|
|
|
|
# cannot accept .sln(f) files as arguments.
|
|
|
|
# Build just the main game for now.
|
2021-10-24 23:25:53 +08:00
|
|
|
- name: Build
|
2021-11-11 17:04:16 +08:00
|
|
|
run: msbuild osu.Android/osu.Android.csproj /restore /p:Configuration=Debug
|
2021-10-24 23:25:53 +08:00
|
|
|
|
|
|
|
build-only-ios:
|
|
|
|
# While this workflow technically *can* run, it fails as iOS builds are blocked by multiple issues.
|
|
|
|
# See https://github.com/ppy/osu-framework/issues/4677 for the details.
|
|
|
|
# The job can be unblocked once those issues are resolved and game deployments can happen again.
|
|
|
|
if: false
|
|
|
|
name: Build only (iOS)
|
|
|
|
runs-on: macos-latest
|
|
|
|
timeout-minutes: 60
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
|
|
|
|
- name: Install .NET 5.0.x
|
|
|
|
uses: actions/setup-dotnet@v1
|
|
|
|
with:
|
|
|
|
dotnet-version: "5.0.x"
|
|
|
|
|
|
|
|
# Contrary to seemingly any other msbuild, msbuild running on macOS/Mono
|
|
|
|
# cannot accept .sln(f) files as arguments.
|
|
|
|
# Build just the main game for now.
|
|
|
|
- name: Build
|
|
|
|
run: msbuild osu.iOS/osu.iOS.csproj /restore /p:Configuration=Debug
|
|
|
|
|
2021-06-15 20:59:18 +08:00
|
|
|
inspect-code:
|
|
|
|
name: Code Quality
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
|
|
|
|
# FIXME: Tools won't run in .NET 5.0 unless you install 3.1.x LTS side by side.
|
|
|
|
# https://itnext.io/how-to-support-multiple-net-sdks-in-github-actions-workflows-b988daa884e
|
|
|
|
- name: Install .NET 3.1.x LTS
|
|
|
|
uses: actions/setup-dotnet@v1
|
|
|
|
with:
|
|
|
|
dotnet-version: "3.1.x"
|
|
|
|
|
|
|
|
- name: Install .NET 5.0.x
|
|
|
|
uses: actions/setup-dotnet@v1
|
|
|
|
with:
|
|
|
|
dotnet-version: "5.0.x"
|
|
|
|
|
|
|
|
- name: Restore Tools
|
|
|
|
run: dotnet tool restore
|
|
|
|
|
|
|
|
- name: Restore Packages
|
|
|
|
run: dotnet restore
|
|
|
|
|
|
|
|
- name: CodeFileSanity
|
|
|
|
run: |
|
|
|
|
# TODO: Add ignore filters and GitHub Workflow Command Reporting in CFS. That way we don't have to do this workaround.
|
|
|
|
# FIXME: Suppress warnings from templates project
|
2021-10-13 16:42:55 +08:00
|
|
|
exit_code=0
|
|
|
|
while read -r line; do
|
2021-10-13 16:56:33 +08:00
|
|
|
if [[ ! -z "$line" ]]; then
|
2021-10-13 16:42:55 +08:00
|
|
|
echo "::error::$line"
|
|
|
|
exit_code=1
|
2021-10-13 16:56:33 +08:00
|
|
|
fi
|
2021-10-13 16:42:55 +08:00
|
|
|
done <<< $(dotnet codefilesanity)
|
|
|
|
exit $exit_code
|
2021-06-15 20:59:18 +08:00
|
|
|
|
|
|
|
# Temporarily disabled due to test failures, but it won't work anyway until the tool is upgraded.
|
|
|
|
# - name: .NET Format (Dry Run)
|
|
|
|
# run: dotnet format --dry-run --check
|
|
|
|
|
|
|
|
- name: InspectCode
|
|
|
|
run: dotnet jb inspectcode $(pwd)/osu.Desktop.slnf --output=$(pwd)/inspectcodereport.xml --cachesDir=$(pwd)/inspectcode --verbosity=WARN
|
|
|
|
|
2021-06-16 12:22:46 +08:00
|
|
|
- name: NVika
|
|
|
|
run: dotnet nvika parsereport "${{github.workspace}}/inspectcodereport.xml" --treatwarningsaserrors
|