forked from Mirror/Ryujinx
This project wasn't really used by anyone and isn't worth mantaining. This commit remove the profiler entirely from Ryujinx and remove the associated CI tasks.
27 lines
No EOL
721 B
YAML
27 lines
No EOL
721 B
YAML
name: "Build job"
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
branches:
|
|
- '*'
|
|
jobs:
|
|
build:
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
matrix:
|
|
os: [ubuntu-latest, macOS-latest, windows-latest]
|
|
dotnet: ['3.1.100']
|
|
environment: ['Debug', 'Release']
|
|
name: ${{ matrix.environment }} build (Dotnet ${{ matrix.dotnet }}, OS ${{ matrix.os }})
|
|
steps:
|
|
- uses: actions/checkout@master
|
|
- name: Setup dotnet
|
|
uses: actions/setup-dotnet@v1
|
|
with:
|
|
dotnet-version: ${{ matrix.dotnet }}
|
|
- name: Build
|
|
run: dotnet build -c "${{ matrix.environment }}"
|
|
- name: Test
|
|
run: dotnet test -c "${{ matrix.environment }}" |