Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
12 changes: 11 additions & 1 deletion .github/workflows/lang-csharp-efcore.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ jobs:
'8.x',
'9.x',
'10.x',
'11.x',
]
npgsql-version: [
'8.*',
Expand All @@ -54,8 +55,9 @@ jobs:
]
cratedb-version: [ 'nightly' ]

# Npgsql.EntityFrameworkCore.PostgreSQL 10.0.0 and higher needs .NET10.
exclude:

# Npgsql.EntityFrameworkCore.PostgreSQL 10.0.0 and higher needs .NET10.
- dotnet-version: '8.x'
npgsql-version: '10.*'
- dotnet-version: '8.x'
Expand All @@ -65,6 +67,14 @@ jobs:
- dotnet-version: '9.x'
npgsql-version: 'prerelease'

# Npgsql.EntityFrameworkCore.PostgreSQL 11.0.0 is not compatible with .NET10.
- dotnet-version: '10.x'
npgsql-version: 'prerelease'

# Npgsql.EntityFrameworkCore.PostgreSQL 10.0.0 is not compatible with .NET11.
- dotnet-version: '11.x'
npgsql-version: '10.*'

# https://docs.github.com/en/free-pro-team@latest/actions/guides/about-service-containers
services:
cratedb:
Expand Down
9 changes: 9 additions & 0 deletions .github/workflows/lang-csharp-npgsql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ jobs:
'8.x',
'9.x',
'10.x',
'11.x',
]
npgsql-version: [
'8.*',
Expand All @@ -54,6 +55,14 @@ jobs:
]
cratedb-version: [ 'nightly' ]

exclude:

# .NET11 needs Npgsql.PostgreSQL 10.0.0 and higher.
- dotnet-version: '11.x'
npgsql-version: '8.*'
- dotnet-version: '11.x'
npgsql-version: '9.*'

# https://docs.github.com/en/free-pro-team@latest/actions/guides/about-service-containers
services:
cratedb:
Expand Down