Add comments in build scripts (#244)

This commit is contained in:
gwenn 2017-03-03 21:15:54 +01:00
parent 84d21ecf91
commit a5ff2387fa
2 changed files with 8 additions and 8 deletions

View File

@ -16,11 +16,11 @@ addons:
sources: sources:
- llvm-toolchain-precise-3.9 - llvm-toolchain-precise-3.9
- ubuntu-toolchain-r-test - ubuntu-toolchain-r-test
packages: packages: # recommanded versions for rust-bindgen
- llvm-3.9-dev - llvm-3.9-dev
- libclang-3.9-dev - libclang-3.9-dev
env: env: # specify the clang path for rust-bindgen
- LIBCLANG_PATH=/usr/lib/llvm-3.9/lib - LIBCLANG_PATH=/usr/lib/llvm-3.9/lib
script: script:

View File

@ -8,12 +8,12 @@ install:
- if defined MSYS2_BITS set PATH=%PATH%;C:\msys64\mingw%MSYS2_BITS%\bin - if defined MSYS2_BITS set PATH=%PATH%;C:\msys64\mingw%MSYS2_BITS%\bin
- rustc -V - rustc -V
- cargo -V - cargo -V
- ps: Start-FileDownload 'https://sqlite.org/2017/sqlite-dll-win64-x64-3160200.zip' - 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-3160200.zip -y > nul - cmd: 7z e sqlite-dll-win64-x64-3170000.zip -y > nul
- ps: Start-FileDownload 'https://sqlite.org/2017/sqlite-amalgamation-3160200.zip' - 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-3160200.zip -y > nul - cmd: 7z e sqlite-amalgamation-3170000.zip -y > nul
- SET SQLITE3_LIB_DIR=%APPVEYOR_BUILD_FOLDER% - 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% - 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 build: false