Skip to content

Commit 9baa19d

Browse files
authored
Merge pull request #1264 from FireDaemon/activate-soundex-tests
Activated soundex unit tests
2 parents 5415cc8 + 3866ce3 commit 9baa19d

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

appveyor.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -107,12 +107,12 @@ for:
107107
install:
108108
- |-
109109
cd C:\Tools\vcpkg
110-
git fetch --tags && git checkout 2023.12.12
110+
git fetch --tags && git checkout 2024.01.12
111111
cd %APPVEYOR_BUILD_FOLDER%
112112
C:\Tools\vcpkg\bootstrap-vcpkg.bat -disableMetrics
113113
C:\Tools\vcpkg\vcpkg integrate install
114114
set VCPKG_DEFAULT_TRIPLET=%platform%-windows
115-
vcpkg install sqlite3[core,dbstat,math,json1,fts5]
115+
vcpkg install sqlite3[core,dbstat,math,json1,fts5,soundex]
116116
rem The Visual Studio 2017 build worker image comes with CMake 3.16 only, and sqlite_orm will build the Catch2 dependency from source
117117
if not "%appveyor_build_worker_image%"=="Visual Studio 2017" (vcpkg install catch2)
118118
before_build:
@@ -140,11 +140,11 @@ for:
140140
install:
141141
- |-
142142
pushd $HOME/vcpkg
143-
git fetch --tags && git checkout 2023.12.12
143+
git fetch --tags && git checkout 2024.01.12
144144
popd
145145
$HOME/vcpkg/bootstrap-vcpkg.sh -disableMetrics
146146
$HOME/vcpkg/vcpkg integrate install --overlay-triplets=vcpkg/triplets
147-
vcpkg install sqlite3[core,dbstat,math,json1,fts5] catch2 --overlay-triplets=vcpkg/triplets
147+
vcpkg install sqlite3[core,dbstat,math,json1,fts5,soundex] catch2 --overlay-triplets=vcpkg/triplets
148148
before_build:
149149
- |-
150150
mkdir compile
@@ -168,10 +168,10 @@ for:
168168
# using custom vcpkg triplets for building and linking dynamic dependent libraries
169169
install:
170170
- |-
171-
git clone --depth 1 --branch 2023.12.12 https://github.com/microsoft/vcpkg.git $HOME/vcpkg
171+
git clone --depth 1 --branch 2024.01.12 https://github.com/microsoft/vcpkg.git $HOME/vcpkg
172172
$HOME/vcpkg/bootstrap-vcpkg.sh -disableMetrics
173173
$HOME/vcpkg/vcpkg integrate install --overlay-triplets=vcpkg/triplets
174-
vcpkg install sqlite3[core,dbstat,math,json1,fts5] catch2 --overlay-triplets=vcpkg/triplets
174+
vcpkg install sqlite3[core,dbstat,math,json1,fts5,soundex] catch2 --overlay-triplets=vcpkg/triplets
175175
before_build:
176176
- |-
177177
mkdir compile

0 commit comments

Comments
 (0)