Skip to content

Bump the testing group with 2 updates #48

Bump the testing group with 2 updates

Bump the testing group with 2 updates #48

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
aot-smoke:
name: Native AOT smoke test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v7
- name: Setup .NET
uses: actions/setup-dotnet@v5
with:
dotnet-version: '10.0.x'
- name: Install AOT prerequisites
run: sudo apt-get update && sudo apt-get install -y clang zlib1g-dev
# PublishAot + TreatWarningsAsErrors: any IL2xxx/IL3xxx trim/AOT warning fails the build.
- name: Publish Native AOT
run: dotnet publish samples/Validify.AotSample --configuration Release -r linux-x64