Skip to content

Commit 7eb15d5

Browse files
authored
Merge branch 'develop' into libssl-not-found-issue
2 parents 191e436 + 06fe5c2 commit 7eb15d5

File tree

3 files changed

+20
-7
lines changed

3 files changed

+20
-7
lines changed

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,15 @@
11
*Issue #, if available:*
22

33
*What was changed?*
4+
-
45

56
*Why was it changed?*
7+
-
68

79
*How was it changed?*
10+
-
811

912
*What testing was done for the changes?*
13+
-
1014

11-
By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.
15+
By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.

.github/workflows/ci.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ on:
99
branches:
1010
- develop
1111
- master
12+
13+
env:
14+
AWS_KVS_LOG_LEVEL: 7
15+
1216
jobs:
1317
mac-os-builds:
1418
strategy:
@@ -37,8 +41,8 @@ jobs:
3741
permissions:
3842
id-token: write
3943
contents: read
44+
4045
env:
41-
AWS_KVS_LOG_LEVEL: 2
4246
CC: ${{ matrix.compiler.cc }}
4347
CXX: ${{ matrix.compiler.cxx }}
4448

@@ -92,8 +96,6 @@ jobs:
9296
9397
linux-gcc-code-coverage:
9498
runs-on: ubuntu-22.04
95-
env:
96-
AWS_KVS_LOG_LEVEL: 2
9799
permissions:
98100
id-token: write
99101
contents: read
@@ -135,7 +137,6 @@ jobs:
135137
env:
136138
CC: clang
137139
CXX: clang++
138-
AWS_KVS_LOG_LEVEL: 2
139140
steps:
140141
- name: Clone repository
141142
uses: actions/checkout@v3
@@ -169,7 +170,6 @@ jobs:
169170
env:
170171
CC: clang
171172
CXX: clang++
172-
AWS_KVS_LOG_LEVEL: 2
173173
steps:
174174
- name: Clone repository
175175
uses: actions/checkout@v3
@@ -275,7 +275,6 @@ jobs:
275275

276276
env:
277277
DEBIAN_FRONTEND: noninteractive
278-
AWS_KVS_LOG_LEVEL: 2
279278
CC: gcc
280279
CXX: g++
281280

tst/main.cpp

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,16 @@ int main(int argc, char** argv)
6565
if (trial >= MAX_TRIALS) {
6666
::testing::GTEST_FLAG(break_on_failure) = breakOnFailure;
6767
}
68+
69+
// Increase logging verbosity on retry
70+
if (trial >= 1) {
71+
#ifdef _WIN32
72+
_putenv_s("AWS_KVS_LOG_LEVEL", "1");
73+
#else
74+
setenv("AWS_KVS_LOG_LEVEL", "1", 1);
75+
#endif
76+
}
77+
6878
rc = RUN_ALL_TESTS();
6979

7080
// If there were some tests failed, set googletest filter flag to those failed tests.

0 commit comments

Comments
 (0)