File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2424 test :
2525 needs : detect-pgversion
2626 env :
27- SQLITE_VERSION : " 3460000 "
28- SQLITE_YEAR : " 2024 "
27+ SQLITE_VERSION : " 3490000 "
28+ SQLITE_YEAR : " 2025 "
2929 POSTGIS_VERSION : " 3.4.2"
3030 HTTP_PROXY : " "
3131 HTTPS_PROXY : " "
7373 bash GitHubActions/build_postgis.sh ${{ matrix.pg }} ${{ env.POSTGIS_VERSION }}
7474 fi
7575
76- <<<<<<< HEAD
77- =======
78- - name : install SQLite, ${{ matrix.config }} mode
79- run : |
80- if [[ "${{ matrix.config }}" == "default" ]]; then
81- bash GitHubActions/install_sqlite.sh ${{ env.SQLITE_VERSION }} ${{ env.SQLITE_YEAR }} "${{ matrix.config }}"
82- elif [[ "${{ matrix.config }}" == "postgis" ]]; then
83- bash GitHubActions/install_sqlite.sh ${{ env.SQLITE_VERSION }} ${{ env.SQLITE_YEAR }} "${{ matrix.config }}" --enable-rtree
84- fi
85-
86- >>>>>>> 9764c26 (Add initial SpatiaLite ↔ PostGIS support (#96))
8776 - name : build sqlite_fdw, ${{ matrix.config }} mode
8877 run : |
8978 bash GitHubActions/build_sqlite_fdw.sh ${{ matrix.pg }} ${{ matrix.config }} ${{ env.SQLITE_FOR_TESTING_DIR }}
Original file line number Diff line number Diff line change 55# This sript downloads SQLite source code from the official web site into
66# ./workdir then builds and installs it.
77#
8- <<< <<< < HEAD
98# Usage: ./install_sqlite.sh version year testing_mode sqlite_for_testing_dir [configure_options]
109# version: SQLite version to be installed.
1110# year: A year of SQLite released. It is used for determining a download URL.
1413# configure_options: are a list of option for sqlite server.
1514#
1615# Ex) ./install_sqlite.sh 3420000 2023 postgis /opt/sqlite_for_testing --enable-rtree
17- =======
18- # Usage: ./install_sqlite.sh version year testing_mode [configure_options]
19- # version: SQLite version to be installed.
20- # year: A year of SQLite released. It is used for determining a download URL.
21- # testing_mode: 'default' or 'postgis' value.
22- # configure_options: are a list of option for sqlite server.
23- #
24- # Ex) ./install_sqlite.sh 3420000 2023 postgis --enable-rtree
25- >>>>>>> 9764c26 (Add initial SpatiaLite ↔ PostGIS support (# 96))
2616#
2717# Requirements
2818# - be able to connect to the SQLite official web site by curl.
3323VERSION=" $1 "
3424YEAR=" $2 "
3525TESTING_MODE=" $3 "
36- <<< <<< < HEAD
3726SQLITE_FOR_TESTING_DIR=" $4 "
38- =======
39- >>>>>>> 9764c26 (Add initial SpatiaLite ↔ PostGIS support (# 96))
4027
4128CONFIGURE_OPTIONS=" "
4229
4330while (( "$# " )) ; do
44- <<< <<< < HEAD
4531 CONFIGURE_OPTIONS=" $CONFIGURE_OPTIONS $5 "
46- =======
47- CONFIGURE_OPTIONS=" $CONFIGURE_OPTIONS $4 "
48- >>>>>>> 9764c26 (Add initial SpatiaLite ↔ PostGIS support (# 96))
4932 shift
5033done
5134
You can’t perform that action at this time.
0 commit comments