tqcq
99c258107b
All checks were successful
rpcrypto-build / build (Release, hisiv510.toolchain.cmake) (push) Successful in 1m24s
rpcrypto-build / build (Debug, himix200.toolchain.cmake) (push) Successful in 1m30s
rpcrypto-build / build (Debug, hisiv510.toolchain.cmake) (push) Successful in 1m43s
linux-mips64-gcc / linux-gcc-mips64el (push) Successful in 1m47s
linux-x64-gcc / linux-gcc (push) Successful in 2m11s
rpcrypto-build / build (Release, himix200.toolchain.cmake) (push) Successful in 3m19s
linux-hisiv500-gcc / linux-gcc-hisiv500 (push) Successful in 3m39s
Co-authored-by: tqcq <99722391+tqcq@users.noreply.github.com> Reviewed-on: #2
46 lines
842 B
YAML
46 lines
842 B
YAML
language: cpp
|
|
|
|
os:
|
|
- linux
|
|
|
|
dist: focal
|
|
sudo: required
|
|
|
|
services:
|
|
- mysql
|
|
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- sqlite3
|
|
- libboost-dev
|
|
- python-pyparsing
|
|
|
|
compiler:
|
|
- clang
|
|
- gcc
|
|
|
|
env:
|
|
- CONFIG=Release
|
|
- CONFIG=Release TESTS_CXX_STD=17
|
|
#- CONFIG=Debug
|
|
|
|
notifications:
|
|
email:
|
|
on_success: change
|
|
on_failure: always
|
|
|
|
before_script:
|
|
- mysql --version
|
|
- (while ! mysqladmin -u root status ; do sleep 1; done) # wait for mysql to start
|
|
- mysqladmin -u root create sqlpp_mysql
|
|
- if [[ "$CXX" = "g++" && "$CONFIG" = "Debug" && "$TRAVIS_OS_NAME" = "linux" ]]; then export CXXFLAGS="--coverage"; fi
|
|
- cmake -B build -DCMAKE_BUILD_TYPE=$CONFIG -DBUILD_MYSQL_CONNECTOR=ON -DBUILD_SQLITE3_CONNECTOR=ON
|
|
|
|
script:
|
|
- cmake --build . --config $CONFIG
|
|
- ctest --output-on-failure
|
|
|
|
after_script:
|
|
- ../coveralls
|