Skip to content

Metadata attributes (#403) #854

Metadata attributes (#403)

Metadata attributes (#403) #854

Workflow file for this run

name: .NET
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
jobs:
build:
strategy:
matrix:
os: [ windows-latest, ubuntu-latest, macos-latest ]
runs-on: ${{ matrix.os }}
env:
AppVeyorBuild: true
steps:
- uses: actions/checkout@v2
- name: Setup .NET 7
uses: actions/setup-dotnet@v1
with:
dotnet-version: 7.0.x
- name: Setup .NET 6
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.x
- name: Restore dependencies
working-directory: src
run: dotnet restore
- name: Build FlatSharp.Compiler
working-directory: src/FlatSharp.Compiler
run: dotnet build -c Release /p:SignAssembly=true
- name: Run FlatSharp.Compiler (E2E Tests)
# You may pin to the exact commit or the version.
# uses: Amadevus/pwsh-script@97a8b211a5922816aa8a69ced41fa32f23477186
uses: Amadevus/pwsh-script@v2.0.3
with:
# PowerShell script to execute in Actions-hydrated context
script: |
$fbs = (gci -r src/Tests/FlatSharpEndToEndTests/*.fbs) -join ";"
dotnet src/FlatSharp.Compiler/bin/Release/net7.0/FlatSharp.Compiler.dll --nullable-warnings false --normalize-field-names true --input "$fbs" -o src/Tests/FlatSharpEndToEndTests
- name: Run FlatSharp.Compiler (Pooling Tests)
# You may pin to the exact commit or the version.
# uses: Amadevus/pwsh-script@97a8b211a5922816aa8a69ced41fa32f23477186
uses: Amadevus/pwsh-script@v2.0.3
with:
# PowerShell script to execute in Actions-hydrated context
script: |
$fbs = (gci -r src/Tests/FlatSharpPoolableEndToEndTests/*.fbs) -join ";"
dotnet src/FlatSharp.Compiler/bin/Release/net7.0/FlatSharp.Compiler.dll --nullable-warnings false --normalize-field-names true --gen-poolable true --input "$fbs" -o src/Tests/FlatSharpPoolableEndToEndTests
- name: Build
working-directory: src
run: dotnet build -c Release /p:SignAssembly=true
- name: E2E Test
working-directory: src/Tests/FlatSharpEndToEndTests
run: dotnet test -c Release /p:SignAssembly=true --verbosity normal
- name: Poolable E2E Test
working-directory: src/Tests/FlatSharpPoolableEndToEndTests
run: dotnet test -c Release /p:SignAssembly=true --verbosity normal
- name: Compiler Test
working-directory: src/Tests/FlatSharpCompilerTests
run: dotnet test -c Release /p:SignAssembly=true --verbosity normal
- if: runner.os == 'Windows'
name: Upload Packages
uses: actions/upload-artifact@v2
with:
name: Packages
path: ./**/*.nupkg