Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 9 additions & 5 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ jobs:
- name: Make Build Directory
run: mkdir build

- name: Install sonar-scanner and build-wrapper
uses: sonarsource/sonarcloud-github-c-cpp@v2
- name: Install Build Wrapper
uses: SonarSource/sonarqube-scan-action/install-build-wrapper@v4

- name: CMake
working-directory: build
Expand All @@ -58,14 +58,18 @@ jobs:
gcovr --sonarqube coverage.xml -r ..

- name: Upload SonarCloud
run: |
build/sonar-scanner/bin/sonar-scanner -Dsonar.host.url=https://sonarcloud.io -Dproject.settings=.sonar-project.properties -Dsonar.login=${{ secrets.SONAR_TOKEN }}
uses: SonarSource/sonarqube-scan-action@v4
with:
args: >
-Dsonar.host.url=https://sonarcloud.io
-Dproject.settings=.sonar-project.properties
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Upload Codecov.io
uses: codecov/codecov-action@e28ff129e5465c2c0dcc6f003fc735cb6ae0c673 # v4.5.0
with:
directory: .
flags: unittests
fail_ci_if_error: true
fail_ci_if_error: true
2 changes: 1 addition & 1 deletion src/client_list.h
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ int sendMsgtoRegisteredClients(char *dest,const char **Msg,size_t msgSize);

reg_list_item_t * get_global_node(void);
void release_global_node (void);
int checkClientStatus();
int checkClientStatus(char *serviceName);
#ifdef __cplusplus
}
#endif
Expand Down
Loading