Skip to content

Commit 19e96ee

Browse files
committed
Fix CI
1 parent e7351fb commit 19e96ee

File tree

2 files changed

+2
-30
lines changed

2 files changed

+2
-30
lines changed

.github/workflows/CI.yml

+2-13
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ jobs:
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: ""
@@ -73,17 +73,6 @@ jobs:
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 }}

GitHubActions/install_sqlite.sh

-17
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
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.
@@ -14,15 +13,6 @@
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.
@@ -33,19 +23,12 @@
3323
VERSION="$1"
3424
YEAR="$2"
3525
TESTING_MODE="$3"
36-
<<<<<<< HEAD
3726
SQLITE_FOR_TESTING_DIR="$4"
38-
=======
39-
>>>>>>> 9764c26 (Add initial SpatiaLite ↔ PostGIS support (#96))
4027

4128
CONFIGURE_OPTIONS=""
4229

4330
while (( "$#" )); 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
5033
done
5134

0 commit comments

Comments
 (0)