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
34 changes: 8 additions & 26 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,46 +7,28 @@ defaults:

jobs:
build:
name: Build ${{ matrix.rid }}
runs-on: ${{ matrix.os }}
name: Build
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- os: windows-latest
rid: win-x64
- os: windows-latest
rid: win-x86
- os: macos-latest
rid: osx-x64
- os: ubuntu-latest
rid: linux-x64
steps:
- uses: actions/checkout@v4
- name: Build
run: |
dotnet build -c Release -r ${{ matrix.rid }} -p:InstallYetAnotherHttpHandler=false
dotnet build -c Release
- run: |
mkdir -p tmp/Plugins
cp -r Dependencies/NuGetDependencies/${{ matrix.rid }} tmp/Plugins
cp -r Plugins tmp/Plugins
mkdir -p tmp/YetAnotherHttpHandler
cp -r YetAnotherHttpHandler tmp/YetAnotherHttpHandler
- uses: actions/upload-artifact@v4
with:
name: Plugins-${{ matrix.rid }}
name: Plugins
path: tmp
install-yetanotherhttphandler:
name: Install YetAnotherHttpHandler
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: dotnet build /t:InstallYetAnotherHttpHandler
- uses: actions/upload-artifact@v4
with:
name: YetAnotherHttpHandler
path: Dependencies

dispatch:
runs-on: ubuntu-latest
needs: [ build, install-yetanotherhttphandler ]
needs: [ build]
if: github.repository == 'VisualPinball/VisualPinball.Engine.Mpf' && github.ref == 'refs/heads/master' && github.event_name == 'push'
steps:
- uses: peter-evans/repository-dispatch@v1
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v4
with:
merge-multiple: true
github-token: ${{ secrets.GITHUB_TOKEN }}
run-id: ${{ github.event.client_payload.artifacts_run_id }}
- uses: actions/setup-node@v4
Expand Down
10 changes: 6 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -357,8 +357,10 @@ VisualPinball.Engine.Mpf/machine/data/
# macOS meta files
*.DS_Store

Dependencies/
Dependencies.meta
Plugins/*
!Plugins/*.meta

Runtime/GrpcInterface/Generated/
Runtime/GrpcInterface/Generated.meta
YetAnotherHttpHandler/

Runtime/GrpcInterface/Generated/*
!Runtime/GrpcInterface/Generated/*.meta
8 changes: 8 additions & 0 deletions Plugins.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

33 changes: 33 additions & 0 deletions Plugins/Google.Protobuf.dll.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

33 changes: 33 additions & 0 deletions Plugins/Grpc.Core.Api.dll.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

33 changes: 33 additions & 0 deletions Plugins/Grpc.Net.Client.dll.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

33 changes: 33 additions & 0 deletions Plugins/Grpc.Net.Common.dll.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

33 changes: 33 additions & 0 deletions Plugins/Microsoft.Extensions.Logging.Abstractions.dll.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

33 changes: 33 additions & 0 deletions Plugins/System.Buffers.dll.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

33 changes: 33 additions & 0 deletions Plugins/System.Diagnostics.DiagnosticSource.dll.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

33 changes: 33 additions & 0 deletions Plugins/System.IO.Pipelines.dll.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

33 changes: 33 additions & 0 deletions Plugins/System.Memory.dll.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading