Skip to content

Commit 6ca727f

Browse files
committed
Fix CI failures
1 parent 9841ec6 commit 6ca727f

File tree

4 files changed

+9
-6
lines changed

4 files changed

+9
-6
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@ jobs:
4242
uses: actions/checkout@v2
4343
- name: Build code example
4444
run: |
45-
cmake -S test -b Build -DBUILD_CODE_EXAMPLE=ON
46-
make -C build code_example_posix -j8
45+
cmake -S test -B Build -DBUILD_CODE_EXAMPLE=ON
46+
make -C Build code_example_posix -j8
4747
complexity:
4848
runs-on: ubuntu-latest
4949
steps:

docs/doxygen/pages.dox

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ every path of execution and achieve 100% branch coverage.
6565
@page backoff_algorithm_example Code Example for backoffAlgorithm API
6666
@brief Example POSIX application that retries DNS resolution operation with exponential backoff-and-jitter using the backoffAlgorithm library.
6767

68-
@include backoff_algorithm_posix.c
68+
@include backoff_algorithm_posix.c
6969
*/
7070

7171
/**

lexicon.txt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,11 @@ os
4141
param
4242
pcontext
4343
pnextbackoff
44+
posix
4445
pretrycontext
4546
pretryparams
4647
prng
48+
rand
4749
randomvalue
4850
readme
4951
rm
@@ -57,4 +59,5 @@ td
5759
toolchain
5860
tr
5961
trng
60-
utils
62+
usleep
63+
utils

test/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,9 @@ if(${BUILD_CODE_EXAMPLE})
5454
${MODULE_ROOT_DIR}/docs/doxygen/code_examples/backoff_algorithm_posix.c )
5555

5656
target_link_libraries( code_example_posix coverity_analysis )
57-
57+
5858
endif()
59-
59+
6060
# ==================================== Unit Test Configuration ====================================
6161

6262
if(${BUILD_UNIT_TESTS})

0 commit comments

Comments
 (0)