Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
dotnet 9.0 & name
  • Loading branch information
jpnurmi committed Jun 19, 2025
commit 6474302cb807fce7174563fd16e8977e66b67717
12 changes: 8 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -224,6 +224,10 @@ jobs:
runs-on: ubuntu-22.04

steps:
- uses: actions/setup-dotnet@v4
with:
dotnet-version: 9.0

- name: Fetch NuGet Packages
uses: actions/download-artifact@v4
with:
Expand All @@ -239,7 +243,7 @@ jobs:

- name: Setup Project
run: |
dotnet new console --aot
dotnet new console --aot -n hello-sentry
dotnet add package Sentry --prerelease --source ./local-packages
cat > Program.cs <<'EOF'
SentrySdk.Init(options =>
Expand All @@ -253,9 +257,9 @@ jobs:
- name: Publish Project
run: dotnet publish -p:EnableSdkContainerSupport=true -t:PublishContainer

- name: Run Docker Container
run: docker run --rm helloworld

- name: Run Container
run: docker run hello-sentry
trim-analysis:
needs: build-sentry-native
name: Trim analysis
Expand Down
Loading