aboutsummaryrefslogtreecommitdiff
path: root/appveyor.yml
blob: 2d88284f2621d41ed36959b508bef3824a8c2aa5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
environment:
  matrix:
  - TARGET: x86_64-pc-windows-gnu
    MSYS2_BITS: 64
#  - TARGET: x86_64-pc-windows-msvc
#    VCPKG_DEFAULT_TRIPLET: x64-windows
#    VCPKGRS_DYNAMIC: 1
#  - TARGET: x86_64-pc-windows-msvc
#    VCPKG_DEFAULT_TRIPLET: x64-windows-static
#    RUSTFLAGS: -Ctarget-feature=+crt-static
install:
  - appveyor-retry appveyor DownloadFile https://win.rustup.rs/ -FileName rustup-init.exe
  - rustup-init.exe -y --default-host %TARGET%
  - set PATH=%PATH%;C:\Users\appveyor\.cargo\bin
  - if defined MSYS2_BITS set PATH=%PATH%;C:\msys64\mingw%MSYS2_BITS%\bin
  - rustc -V
  - cargo -V
  # download SQLite dll (useful only when the `bundled` feature is not set)
  - appveyor-retry appveyor DownloadFile https://sqlite.org/2018/sqlite-dll-win64-x64-3250200.zip -FileName sqlite-dll-win64-x64.zip
  - if not defined VCPKG_DEFAULT_TRIPLET 7z e sqlite-dll-win64-x64.zip -y > nul
  # download SQLite headers (useful only when the `bundled` feature is not set)
  - appveyor-retry appveyor DownloadFile https://sqlite.org/2018/sqlite-amalgamation-3250200.zip -FileName sqlite-amalgamation.zip
  - if not defined VCPKG_DEFAULT_TRIPLET 7z e sqlite-amalgamation.zip -y > nul
  # specify where the SQLite dll has been downloaded (useful only when the `bundled` feature is not set)
  - if not defined VCPKG_DEFAULT_TRIPLET SET SQLITE3_LIB_DIR=%APPVEYOR_BUILD_FOLDER%
  # specify where the SQLite headers have been downloaded (useful only when the `bundled` feature is not set)
  - if not defined VCPKG_DEFAULT_TRIPLET SET SQLITE3_INCLUDE_DIR=%APPVEYOR_BUILD_FOLDER%
  # install sqlite3 package
  - if defined VCPKG_DEFAULT_TRIPLET vcpkg install sqlite3

build: false

test_script:
  - cargo test --lib --verbose
  - cargo test --lib --verbose --features bundled
  - cargo test --lib --features "backup blob chrono collation functions hooks limits load_extension serde_json trace"
  - cargo test --lib --features "backup blob chrono functions hooks limits load_extension serde_json trace buildtime_bindgen"
  - cargo test --lib --features "backup blob chrono csvtab functions hooks limits load_extension serde_json trace vtab bundled"
  - cargo test --lib --features "backup blob chrono csvtab functions hooks limits load_extension serde_json trace vtab bundled buildtime_bindgen"

cache:
  - C:\Users\appveyor\.cargo