Skip to content

Commit 8485bb7

Browse files
committed
Add comments and TODO in Travis CI build matrix
1 parent a0f72c7 commit 8485bb7

File tree

2 files changed

+17
-7
lines changed

2 files changed

+17
-7
lines changed

.travis.yml

Lines changed: 16 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,11 @@ env:
1616
- INTERNAL_SQLITE=ON
1717
- VALGRIND=OFF
1818

19+
# Build variants (should test a reasonable number of combination of CMake options)
20+
# TODO GCC 8+ using ubuntu-toolchain-r-test packages
21+
# TODO cppcheck
22+
# TODO Doxygen
23+
# TODO link against googletest system library
1924
matrix:
2025
include:
2126

@@ -34,36 +39,38 @@ matrix:
3439
# Encrypted COVERITY_SCAN_TOKEN, created via the "travis encrypt" command using the project repo's public key
3540
- secure: "Qm4d8NEDPBtYZCYav46uPEvDCtaRsjLXlkVS+C+WCJAPcwXCGkrr96wEi7RWcq2xD86QCh0XiqaPT+xdUmlohOYIovRhaaBmZ1lwIJ4GsG/ZR6xoFr3DYsZ3o4GyXk2vNXNxEl82AC+Xs6e6gkLOV9XRkBcjpVIvoIXgNlKWeGY="
3641

37-
# GCC Debug build with GCov for coverage build
42+
# GCC 7.4.0 Debug build with GCov for coverage build
3843
- dist: bionic
3944
env:
4045
- cc=gcc cxx=g++
4146
- GCOV=ON
4247
- COVERALLS=true
4348

44-
# GCC Debug build with Valgrind instead of Address Sanitizer
49+
# GCC 7.4.0 Debug build with Valgrind instead of Address Sanitizer
4550
- dist: bionic
4651
env:
4752
- cc=gcc cxx=g++
4853
- ASAN=OFF
4954
- VALGRIND=true
5055

51-
# GCC Release build
56+
# GCC 7.4.0 Release build
5257
- dist: bionic
5358
env:
5459
- cc=gcc cxx=g++
5560
- BUILD_TYPE=Release
5661

57-
# GCC test linking with libsqlite3-dev package
62+
# GCC 7.4.0 test linking with libsqlite3-dev package
5863
- dist: bionic
5964
env:
6065
- cc=gcc cxx=g++
6166
- INTERNAL_SQLITE=OFF
6267

68+
# GCC 5.4.0
6369
- dist: xenial
6470
env:
6571
- cc=gcc cxx=g++
6672

73+
# GCC 4.8.4
6774
- dist: trusty
6875
env:
6976
- cc=gcc cxx=g++
@@ -72,14 +79,17 @@ matrix:
7279
# Clang on Linux
7380
##########################################################################
7481

82+
# Clang 7.0.0
7583
- dist: bionic
7684
env:
7785
- cc=clang cxx=clang++
7886

87+
# Clang 7.0.0
7988
- dist: xenial
8089
env:
8190
- cc=clang cxx=clang++
8291

92+
# Clang 5.0.0
8393
- dist: trusty
8494
env:
8595
- cc=clang cxx=clang++
@@ -88,12 +98,12 @@ matrix:
8898
# Clang on OSX
8999
##########################################################################
90100

91-
# Latest XCode
101+
# Latest XCode - AppleClang 9.1.0
92102
- os: osx
93103
env:
94104
- cc=clang cxx=clang++
95105

96-
# XCode 8.3
106+
# XCode 8.3 - AppleClang 8.1.0
97107
- os: osx
98108
osx_image: xcode8.3
99109
env:

sqlite3/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# CMake file for compiling the sqlite3 static library under Windows (for ease of use)
22
#
3-
# Copyright (c) 2012-2016 Sebastien Rombauts ([email protected])
3+
# Copyright (c) 2012-2020 Sebastien Rombauts ([email protected])
44
#
55
# Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt
66
# or copy at http://opensource.org/licenses/MIT)

0 commit comments

Comments
 (0)