Skip to content

Commit

Permalink
Merge pull request #1264 from FireDaemon/activate-soundex-tests
Browse files Browse the repository at this point in the history
Activated soundex unit tests
  • Loading branch information
trueqbit authored Jan 15, 2024
2 parents 5415cc8 + 3866ce3 commit 9baa19d
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,12 +107,12 @@ for:
install:
- |-
cd C:\Tools\vcpkg
git fetch --tags && git checkout 2023.12.12
git fetch --tags && git checkout 2024.01.12
cd %APPVEYOR_BUILD_FOLDER%
C:\Tools\vcpkg\bootstrap-vcpkg.bat -disableMetrics
C:\Tools\vcpkg\vcpkg integrate install
set VCPKG_DEFAULT_TRIPLET=%platform%-windows
vcpkg install sqlite3[core,dbstat,math,json1,fts5]
vcpkg install sqlite3[core,dbstat,math,json1,fts5,soundex]
rem The Visual Studio 2017 build worker image comes with CMake 3.16 only, and sqlite_orm will build the Catch2 dependency from source
if not "%appveyor_build_worker_image%"=="Visual Studio 2017" (vcpkg install catch2)
before_build:
Expand Down Expand Up @@ -140,11 +140,11 @@ for:
install:
- |-
pushd $HOME/vcpkg
git fetch --tags && git checkout 2023.12.12
git fetch --tags && git checkout 2024.01.12
popd
$HOME/vcpkg/bootstrap-vcpkg.sh -disableMetrics
$HOME/vcpkg/vcpkg integrate install --overlay-triplets=vcpkg/triplets
vcpkg install sqlite3[core,dbstat,math,json1,fts5] catch2 --overlay-triplets=vcpkg/triplets
vcpkg install sqlite3[core,dbstat,math,json1,fts5,soundex] catch2 --overlay-triplets=vcpkg/triplets
before_build:
- |-
mkdir compile
Expand All @@ -168,10 +168,10 @@ for:
# using custom vcpkg triplets for building and linking dynamic dependent libraries
install:
- |-
git clone --depth 1 --branch 2023.12.12 https://github.com/microsoft/vcpkg.git $HOME/vcpkg
git clone --depth 1 --branch 2024.01.12 https://github.com/microsoft/vcpkg.git $HOME/vcpkg
$HOME/vcpkg/bootstrap-vcpkg.sh -disableMetrics
$HOME/vcpkg/vcpkg integrate install --overlay-triplets=vcpkg/triplets
vcpkg install sqlite3[core,dbstat,math,json1,fts5] catch2 --overlay-triplets=vcpkg/triplets
vcpkg install sqlite3[core,dbstat,math,json1,fts5,soundex] catch2 --overlay-triplets=vcpkg/triplets
before_build:
- |-
mkdir compile
Expand Down

0 comments on commit 9baa19d

Please sign in to comment.