Skip to content

Commit

Permalink
Add SpatiaLite dialect nhibernate#56
Browse files Browse the repository at this point in the history
  • Loading branch information
peetw committed Jan 23, 2024
1 parent 157547c commit 2f2e632
Show file tree
Hide file tree
Showing 50 changed files with 2,391 additions and 12 deletions.
12 changes: 11 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,11 @@ on: [push, pull_request]
jobs:
test:
name: ${{ matrix.DB }}
runs-on: ubuntu-latest
runs-on: ${{ matrix.OS }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
include:
- DB: MsSql2012 (SQL Server 2017)
DB_INIT: |
Expand Down Expand Up @@ -55,6 +56,15 @@ jobs:
DB_INIT: docker run -d -e POSTGRES_PASSWORD=nhsp_test -p 15433:5432 -v ./Tests.NHibernate.Spatial.PostGis30/initdb:/docker-entrypoint-initdb.d postgis/postgis:16-3.4
TEST_PROJECT: Tests.NHibernate.Spatial.PostGis30

- DB: SpatiaLite (SpatiaLite 4)
DB_INIT: sudo apt install libsqlite3-mod-spatialite=4.*
TEST_PROJECT: Tests.NHibernate.Spatial.SpatiaLite
OS: ubuntu-20.04

- DB: SpatiaLite (SpatiaLite 5)
DB_INIT: sudo apt install libsqlite3-mod-spatialite=5.*
TEST_PROJECT: Tests.NHibernate.Spatial.SpatiaLite

steps:
- name: Checkout repository
uses: actions/checkout@v4
Expand Down
1 change: 1 addition & 0 deletions BuildPackages.bat
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,5 @@ dotnet pack %options% NHibernate.Spatial
dotnet pack %options% NHibernate.Spatial.MsSql
dotnet pack %options% NHibernate.Spatial.MySQL
REM dotnet pack %options% NHibernate.Spatial.Oracle
dotnet pack %options% NHibernate.Spatial.SpatiaLite
dotnet pack %options% NHibernate.Spatial.PostGis
Loading

0 comments on commit 2f2e632

Please sign in to comment.