File tree 2 files changed +2
-30
lines changed
2 files changed +2
-30
lines changed Original file line number Diff line number Diff line change 24
24
test :
25
25
needs : detect-pgversion
26
26
env :
27
- SQLITE_VERSION : " 3460000 "
28
- SQLITE_YEAR : " 2024 "
27
+ SQLITE_VERSION : " 3490000 "
28
+ SQLITE_YEAR : " 2025 "
29
29
POSTGIS_VERSION : " 3.4.2"
30
30
HTTP_PROXY : " "
31
31
HTTPS_PROXY : " "
73
73
bash GitHubActions/build_postgis.sh ${{ matrix.pg }} ${{ env.POSTGIS_VERSION }}
74
74
fi
75
75
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))
87
76
- name : build sqlite_fdw, ${{ matrix.config }} mode
88
77
run : |
89
78
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 5
5
# This sript downloads SQLite source code from the official web site into
6
6
# ./workdir then builds and installs it.
7
7
#
8
- <<< <<< < HEAD
9
8
# Usage: ./install_sqlite.sh version year testing_mode sqlite_for_testing_dir [configure_options]
10
9
# version: SQLite version to be installed.
11
10
# year: A year of SQLite released. It is used for determining a download URL.
14
13
# configure_options: are a list of option for sqlite server.
15
14
#
16
15
# 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))
26
16
#
27
17
# Requirements
28
18
# - be able to connect to the SQLite official web site by curl.
33
23
VERSION=" $1 "
34
24
YEAR=" $2 "
35
25
TESTING_MODE=" $3 "
36
- <<< <<< < HEAD
37
26
SQLITE_FOR_TESTING_DIR=" $4 "
38
- =======
39
- >>>>>>> 9764c26 (Add initial SpatiaLite ↔ PostGIS support (# 96))
40
27
41
28
CONFIGURE_OPTIONS=" "
42
29
43
30
while (( "$# " )) ; do
44
- <<< <<< < HEAD
45
31
CONFIGURE_OPTIONS=" $CONFIGURE_OPTIONS $5 "
46
- =======
47
- CONFIGURE_OPTIONS=" $CONFIGURE_OPTIONS $4 "
48
- >>>>>>> 9764c26 (Add initial SpatiaLite ↔ PostGIS support (# 96))
49
32
shift
50
33
done
51
34
You can’t perform that action at this time.
0 commit comments