From a5ff2387fa20ec0b740ab0866a3bfa55485ce44c Mon Sep 17 00:00:00 2001 From: gwenn Date: Fri, 3 Mar 2017 21:15:54 +0100 Subject: [PATCH] Add comments in build scripts (#244) --- .travis.yml | 4 ++-- appveyor.yml | 12 ++++++------ 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.travis.yml b/.travis.yml index bc08798..d374523 100644 --- a/.travis.yml +++ b/.travis.yml @@ -16,11 +16,11 @@ addons: sources: - llvm-toolchain-precise-3.9 - ubuntu-toolchain-r-test - packages: + packages: # recommanded versions for rust-bindgen - llvm-3.9-dev - libclang-3.9-dev -env: +env: # specify the clang path for rust-bindgen - LIBCLANG_PATH=/usr/lib/llvm-3.9/lib script: diff --git a/appveyor.yml b/appveyor.yml index fc6500f..21e3259 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -8,12 +8,12 @@ install: - if defined MSYS2_BITS set PATH=%PATH%;C:\msys64\mingw%MSYS2_BITS%\bin - rustc -V - cargo -V - - ps: Start-FileDownload 'https://sqlite.org/2017/sqlite-dll-win64-x64-3160200.zip' - - cmd: 7z e sqlite-dll-win64-x64-3160200.zip -y > nul - - ps: Start-FileDownload 'https://sqlite.org/2017/sqlite-amalgamation-3160200.zip' - - cmd: 7z e sqlite-amalgamation-3160200.zip -y > nul - - SET SQLITE3_LIB_DIR=%APPVEYOR_BUILD_FOLDER% - - SET SQLITE3_INCLUDE_DIR=%APPVEYOR_BUILD_FOLDER% + - ps: Start-FileDownload 'https://sqlite.org/2017/sqlite-dll-win64-x64-3170000.zip' # download SQLite dll (useful only when the `bundled` feature is not set) + - cmd: 7z e sqlite-dll-win64-x64-3170000.zip -y > nul + - ps: Start-FileDownload 'https://sqlite.org/2017/sqlite-amalgamation-3170000.zip' # download SQLite headers (useful only when the `bundled` feature is not set) + - cmd: 7z e sqlite-amalgamation-3170000.zip -y > nul + - SET SQLITE3_LIB_DIR=%APPVEYOR_BUILD_FOLDER% # specify where the SQLite dll has been downloaded (useful only when the `bundled` feature is not set) + - SET SQLITE3_INCLUDE_DIR=%APPVEYOR_BUILD_FOLDER% # specify where the SQLite headers have been downloaded (useful only when the `bundled` feature is not set) build: false