Skip to content

Commit

Permalink
Fix CI failures
Browse files Browse the repository at this point in the history
  • Loading branch information
aggarw13 committed Jul 23, 2021
1 parent 9841ec6 commit 9d9e001
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
uses: actions/checkout@v2
- name: Build code example
run: |
cmake -S test -b Build -DBUILD_CODE_EXAMPLE=ON
cmake -S test -B Build -DBUILD_CODE_EXAMPLE=ON
make -C build code_example_posix -j8
complexity:
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion docs/doxygen/pages.dox
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ every path of execution and achieve 100% branch coverage.
@page backoff_algorithm_example Code Example for backoffAlgorithm API
@brief Example POSIX application that retries DNS resolution operation with exponential backoff-and-jitter using the backoffAlgorithm library.

@include backoff_algorithm_posix.c
@include backoff_algorithm_posix.c
*/

/**
Expand Down
5 changes: 4 additions & 1 deletion lexicon.txt
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,11 @@ os
param
pcontext
pnextbackoff
posix
pretrycontext
pretryparams
prng
rand
randomvalue
readme
rm
Expand All @@ -57,4 +59,5 @@ td
toolchain
tr
trng
utils
usleep
utils
4 changes: 2 additions & 2 deletions test/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,9 @@ if(${BUILD_CODE_EXAMPLE})
${MODULE_ROOT_DIR}/docs/doxygen/code_examples/backoff_algorithm_posix.c )

target_link_libraries( code_example_posix coverity_analysis )

endif()

# ==================================== Unit Test Configuration ====================================

if(${BUILD_UNIT_TESTS})
Expand Down

0 comments on commit 9d9e001

Please sign in to comment.