Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .config/dotnet-tools.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,19 @@
"isRoot": true,
"tools": {
"cake.tool": {
"version": "4.0.0",
"version": "0.35.0",
"commands": [
"dotnet-cake"
]
},
"jetbrains.resharper.globaltools": {
"version": "2024.1.2",
"version": "2023.3.3",
"commands": [
"jb"
]
},
"nvika": {
"version": "3.0.1",
"version": "4.0.0",
"commands": [
"nvika"
]
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,9 @@ jobs:
dotnet-version: "8.0.x"

- name: Setup Go
uses: actions/setup-go@v3
uses: actions/setup-go@v5
with:
go-version: 1.21.9

- name: Install httpbin
run: go install github.com/mccutchen/go-httpbin/v2/cmd/go-httpbin@latest
Expand All @@ -94,7 +96,7 @@ jobs:
# 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@v3
uses: actions/upload-artifact@v4
if: ${{ always() }}
with:
name: osu-framework-test-results-${{matrix.os.prettyname}}-${{matrix.threadingMode}}-${{matrix.os.configuration}}
Expand Down Expand Up @@ -131,17 +133,15 @@ jobs:
timeout-minutes: 60
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install .NET 8.0.x
uses: actions/setup-dotnet@v3
uses: actions/setup-dotnet@v4
with:
dotnet-version: "8.0.x"

- name: Restore .NET workloads
# `dotnet workload restore` is bugged in .NET 7.0.101+ when restoring iOS projects,
# see https://github.com/xamarin/xamarin-macios/issues/16400.
run: dotnet workload install ios
run: dotnet workload install ios --from-rollback-file workloads.json

- name: Compile
run: dotnet build -c Debug osu-framework-microphone.iOS.slnf
2 changes: 1 addition & 1 deletion .github/workflows/deploy-pack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
run: dotnet pack -c Release osu.Framework.Microphone /p:Version=${{needs.check-if-tag.outputs.version}} /p:GenerateDocumentationFile=true -o ${{steps.artifactsPath.outputs.nuget_artifacts}}

- name: Upload Artifacts
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: osu-framework
path: ${{steps.artifactsPath.outputs.nuget_artifacts}}\*.nupkg
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@
<ProjectReference Include="..\osu.Framework.Microphone\osu.Framework.Microphone.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="ppy.osu.Framework.Android" Version="2024.1112.0" />
<PackageReference Include="ppy.osu.Framework.Android" Version="2025.604.1" />
</ItemGroup>
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
<ProjectReference Include="..\osu.Framework.Microphone\osu.Framework.Microphone.csproj" />
</ItemGroup>
<ItemGroup Label="Package References">
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.1" />
<PackageReference Include="NUnit" Version="4.2.2" />
<PackageReference Include="NUnit3TestAdapter" Version="4.6.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.14.1" />
<PackageReference Include="NUnit" Version="4.3.2" />
<PackageReference Include="NUnit3TestAdapter" Version="5.0.0" />
</ItemGroup>
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@
<ProjectReference Include="..\osu.Framework.Microphone\osu.Framework.Microphone.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="ppy.osu.Framework.iOS" Version="2024.1112.0" />
<PackageReference Include="ppy.osu.Framework.iOS" Version="2025.604.1" />
</ItemGroup>
</Project>
2 changes: 1 addition & 1 deletion osu.Framework.Microphone/osu.Framework.Microphone.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@
</PropertyGroup>
<ItemGroup Label="Package References">
<PackageReference Include="NWaves" Version="0.9.6" />
<PackageReference Include="ppy.osu.Framework" Version="2024.1112.0" />
<PackageReference Include="ppy.osu.Framework" Version="2025.604.1" />
</ItemGroup>
</Project>
3 changes: 3 additions & 0 deletions workloads.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"microsoft.net.sdk.ios": "17.2.8053/8.0.100"
}
Loading