mirror of
https://github.com/cuberite/SQLiteCpp.git
synced 2025-08-05 10:16:01 -04:00
Fix AppVeyor build and add build status badge and link
This commit is contained in:
parent
9d4829ab1e
commit
987f9e465f
@ -1,7 +1,8 @@
|
|||||||
SQLiteC++
|
SQLiteC++
|
||||||
---------
|
---------
|
||||||
|
|
||||||

|
[](https://travis-ci.org/SRombauts/SQLiteCpp "Travis CI Linux Build Status")
|
||||||
|
[](https://ci.appveyor.com/project/SbastienRombauts/SQLiteCpp "AppVeyor Windows Build status")
|
||||||
|
|
||||||
SQLiteC++ (SQLiteCpp) is a smart and easy to use C++ SQLite3 wrapper.
|
SQLiteC++ (SQLiteCpp) is a smart and easy to use C++ SQLite3 wrapper.
|
||||||
|
|
||||||
@ -118,8 +119,12 @@ You can either recompile it yourself (seek help online) or you can comment out t
|
|||||||
|
|
||||||
This project is continuously tested under Ubuntu Linux with the gcc and clang compilers
|
This project is continuously tested under Ubuntu Linux with the gcc and clang compilers
|
||||||
using the Travis CI community service with the above CMake building and testing procedure.
|
using the Travis CI community service with the above CMake building and testing procedure.
|
||||||
|
It is also tested in the same way under Windows Server 2012 R2 with Visual Studio 2013 compiler
|
||||||
|
using the AppVeyor countinuous integration service.
|
||||||
|
|
||||||
Detailed results can be seen online: https://travis-ci.org/SRombauts/SQLiteCpp
|
Detailed results can be seen online:
|
||||||
|
- https://travis-ci.org/SRombauts/SQLiteCpp
|
||||||
|
- https://ci.appveyor.com/project/SbastienRombauts/SQLiteCpp
|
||||||
|
|
||||||
### Thread-safety
|
### Thread-safety
|
||||||
|
|
||||||
|
@ -6,9 +6,7 @@ version: "{build}"
|
|||||||
# scripts that run after cloning repository
|
# scripts that run after cloning repository
|
||||||
# NOTE : not updating submodule as cloning googletest does not work on AppVeyor
|
# NOTE : not updating submodule as cloning googletest does not work on AppVeyor
|
||||||
install:
|
install:
|
||||||
- sudo apt-get update -qq
|
# - git submodule update --init googletest
|
||||||
- sudo apt-get install -qq cppcheck
|
|
||||||
# - git submodule update --init --recursive
|
|
||||||
|
|
||||||
# configurations to add to build matrix
|
# configurations to add to build matrix
|
||||||
configuration:
|
configuration:
|
||||||
@ -16,13 +14,11 @@ configuration:
|
|||||||
- Release
|
- Release
|
||||||
|
|
||||||
# scripts to run before build
|
# scripts to run before build
|
||||||
# using a symbolic link to get the "make test" to work as if launched from the root directorys
|
|
||||||
# NOTE : no unit tests as cloning googletest does not work on AppVeyor
|
# NOTE : no unit tests as cloning googletest does not work on AppVeyor
|
||||||
before_build:
|
before_build:
|
||||||
- mkdir build
|
- mkdir build
|
||||||
- cd build
|
- cd build
|
||||||
- cmake -DSQLITECPP_BUILD_EXAMPLES=ON -DSQLITECPP_BUILD_TESTS=OFF -DSQLITECPP_RUN_DOXYGEN=OFF ..
|
- cmake -DSQLITECPP_BUILD_EXAMPLES=ON -DSQLITECPP_BUILD_TESTS=OFF -DSQLITECPP_RUN_CPPCHECK=OFF -DSQLITECPP_RUN_DOXYGEN=OFF ..
|
||||||
- ln -s ../examples examples
|
|
||||||
|
|
||||||
# build examples, and run tests (ie make & make test)
|
# build examples, and run tests (ie make & make test)
|
||||||
build_script:
|
build_script:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user