Disable API verification for Unity.Shaders.dll #1240
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: [pull_request] | |
jobs: | |
# Make sure we only invoke known gradle-wrapper.jar files | |
gradleValidation: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Fetch Sources | |
uses: actions/checkout@v2 | |
- name: Gradle Wrapper Validation | |
uses: gradle/wrapper-validation-action@v1 | |
windows: | |
needs: gradleValidation | |
runs-on: windows-latest | |
steps: | |
- name: Fetch Sources | |
uses: actions/checkout@v2 | |
- name: Setup .NET CLI | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: '8.0.x' | |
- name: Build and Tests | |
shell: powershell | |
run: powershell -File .\build.ps1 -RunTests -Verbose | |
- name: Upload artifact | |
if: always() | |
uses: actions/upload-artifact@v1 | |
with: | |
name: nunit-reports | |
path: rider\build\nunit\reports | |
linux: | |
needs: gradleValidation | |
runs-on: ubuntu-latest | |
steps: | |
- name: Fetch Sources | |
uses: actions/checkout@v2 | |
- name: Setup .NET CLI | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: '8.0.x' | |
- name: Build | |
shell: bash | |
run: ./build.sh --info --stacktrace | |
macos: | |
needs: gradleValidation | |
runs-on: macos-latest | |
steps: | |
- name: Fetch Sources | |
uses: actions/checkout@v2 | |
- name: Setup .NET CLI | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: '8.0.x' | |
- name: Build | |
shell: bash | |
run: ./build.sh --info --stacktrace |