Skip to content
This repository was archived by the owner on Aug 8, 2023. It is now read-only.

Commit ee5cd16

Browse files
committed
WIP
1 parent 821b6bd commit ee5cd16

File tree

2 files changed

+52
-51
lines changed

2 files changed

+52
-51
lines changed

circle.yml

+51-51
Original file line numberDiff line numberDiff line change
@@ -4,58 +4,58 @@ workflows:
44
version: 2
55
default:
66
jobs:
7-
- nitpick
8-
- clang-tidy:
9-
filters:
10-
branches:
11-
ignore: master
12-
- android-debug-arm-v7
13-
- android-build-release:
14-
filters:
15-
branches:
16-
ignore: /(master|release-boba|release-chai)/
17-
- android-release-snapshot:
18-
filters:
19-
branches:
20-
only: /(master|release-boba|release-chai)/
21-
- android-release-tag:
22-
filters:
23-
tags:
24-
only: /android-v.*/
25-
branches:
26-
ignore: /.*/
27-
- node-clang39-release:
28-
filters:
29-
tags:
30-
only: /node-.*/
31-
- node-gcc6-debug:
32-
filters:
33-
tags:
34-
only: /node-.*/
35-
- linux-clang-3.8-libcxx-debug
36-
- linux-clang4-sanitize-address
37-
- linux-clang4-sanitize-undefined
38-
- linux-clang4-sanitize-thread
7+
# - nitpick
8+
# - clang-tidy:
9+
# filters:
10+
# branches:
11+
# ignore: master
12+
# - android-debug-arm-v7
13+
# - android-build-release:
14+
# filters:
15+
# branches:
16+
# ignore: /(master|release-boba|release-chai)/
17+
# - android-release-snapshot:
18+
# filters:
19+
# branches:
20+
# only: /(master|release-boba|release-chai)/
21+
# - android-release-tag:
22+
# filters:
23+
# tags:
24+
# only: /android-v.*/
25+
# branches:
26+
# ignore: /.*/
27+
# - node-clang39-release:
28+
# filters:
29+
# tags:
30+
# only: /node-.*/
31+
# - node-gcc6-debug:
32+
# filters:
33+
# tags:
34+
# only: /node-.*/
35+
# - linux-clang-3.8-libcxx-debug
36+
# - linux-clang4-sanitize-address
37+
# - linux-clang4-sanitize-undefined
38+
# - linux-clang4-sanitize-thread
3939
- linux-gcc4.9-debug
40-
- linux-gcc5-debug-coverage
41-
- linux-gcc5-release-qt4
42-
- linux-gcc5-release-qt5
43-
- ios-debug
44-
- ios-sanitize
45-
- ios-sanitize-address
46-
- ios-static-analyzer
47-
- ios-release:
48-
filters:
49-
tags:
50-
only: /ios-.*/
51-
branches:
52-
ignore: /.*/
53-
- macos-debug
54-
- macos-debug-qt5
55-
- macos-release-node:
56-
filters:
57-
tags:
58-
only: /node-.*/
40+
# - linux-gcc5-debug-coverage
41+
# - linux-gcc5-release-qt4
42+
# - linux-gcc5-release-qt5
43+
# - ios-debug
44+
# - ios-sanitize
45+
# - ios-sanitize-address
46+
# - ios-static-analyzer
47+
# - ios-release:
48+
# filters:
49+
# tags:
50+
# only: /ios-.*/
51+
# branches:
52+
# ignore: /.*/
53+
# - macos-debug
54+
# - macos-debug-qt5
55+
# - macos-release-node:
56+
# filters:
57+
# tags:
58+
# only: /node-.*/
5959

6060
step-library:
6161
- &generate-cache-key

test/storage/offline_database.test.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -199,6 +199,7 @@ TEST(OfflineDatabase, TEST_REQUIRES_WRITE(SchemaVersion)) {
199199

200200
{
201201
mapbox::sqlite::Database db = mapbox::sqlite::Database::open(filename, mapbox::sqlite::ReadWriteCreate);
202+
db.setBusyTimeout(Milliseconds::max());
202203
db.exec("PRAGMA user_version = 1");
203204
}
204205

0 commit comments

Comments
 (0)