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
2 changes: 1 addition & 1 deletion .github/workflows/build_options_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
sudo apt-get update
sudo apt-get install libpq-dev
sudo apt-get install libc6-dbg gdb
sudo apt-get install postgresql-14 postgresql-contrib-14 postgresql-14-postgis-3 postgresql-common postgis
sudo apt-get install postgresql postgresql-contrib postgis postgresql-common postgis

- name: build geodiff static only
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/coverage_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ jobs:
sudo apt-get update
sudo apt-get install -y lcov
sudo apt-get install libpq-dev
sudo apt-get install postgresql-14 postgresql-contrib-14 postgresql-14-postgis-3 postgresql-common postgis
sudo apt-get install postgresql postgresql-contrib postgis postgresql-common postgis
sudo apt-get install -y python3 python3-pytest libsqlite3-dev cmake cmake-data

- name: start PG database
run: |
sudo pg_ctlcluster 14 main start
sudo pg_ctlcluster 16 main start
sudo pg_lsclusters

- name: create PG user
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/memcheck_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ jobs:
sudo apt-get update
sudo apt-get install libpq-dev
sudo apt-get install libc6-dbg gdb valgrind
sudo apt-get install postgresql-14 postgresql-contrib-14 postgresql-14-postgis-3 postgresql-common postgis
sudo apt-get install postgresql postgresql-contrib postgis postgresql-common postgis
valgrind --version

- name: start PG database
run: |
sudo pg_ctlcluster 14 main start
sudo pg_ctlcluster 16 main start
sudo pg_lsclusters

- name: create PG user
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/python_packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,9 +83,9 @@ jobs:

build_windows_wheels:
name: Build wheels on windows-latest
runs-on: windows-2019
runs-on: windows-2022
env:
CMAKE_GENERATOR: "Visual Studio 16 2019"
CMAKE_GENERATOR: "Visual Studio 17 2022"
SQLite3_ROOT: "C:/vcpkg/installed/x64-windows"
CIBW_SKIP: cp27-* cp35-* cp36-* *-win32
CIBW_TEST_COMMAND: python -c "import pygeodiff; pygeodiff.GeoDiff().version()"
Expand Down Expand Up @@ -116,9 +116,9 @@ jobs:

build_windows_32_wheels:
name: Build 32bit wheels on windows-latest
runs-on: windows-2019
runs-on: windows-2022
env:
CMAKE_GENERATOR: "Visual Studio 16 2019"
CMAKE_GENERATOR: "Visual Studio 17 2022"
CMAKE_GENERATOR_PLATFORM: "Win32"
SQLite3_ROOT: "C:/vcpkg/installed/x86-windows"
CIBW_SKIP: cp27-* cp35-* cp36-* pp* *-win_amd64
Expand Down
Loading