Sonarcloud on stm32 c project

Hi forum …

I want to run a sonarcloud analysis on a stm32 c project hosted in a bitbucket cloud repo.
I have created the yaml file but i think it is not working… .
I am able to compile the project becasue a found a docker image with installed the right compiler I need…
Can you please check my file and tell me what is wrong ?
Thanks a lot

image: 
  name: rushmash/gcc-arm-embedded-docker
  username: simogaspa84
  password: ***************
  email: simogaspa84@gmail.com

clone:
  depth: full              # SonarCloud scanner needs the full history to assign issues properly

definitions:
  caches:
    sonar: ~/.sonar/cache  # Caching SonarCloud artifacts will speed up your build
  steps:
    - step: &build-test-sonarcloud
        name: Build, test and analyze on SonarCloud
        caches:
          - sonar
        script:
          - apk --no-cache add unzip curl zlib 
          - export SONAR_SCANNER_VERSION=4.4.0.2170
          - export SONAR_SCANNER_HOME=$HOME/.sonar/sonar-scanner-$SONAR_SCANNER_VERSION-linux
          - export LD_LIBRARY_PATH="/lib;/usr/lib"
          - export BW_OUTPUT=$HOME/.sonar/bw-output
          - mkdir -p $BW_OUTPUT
          - curl --create-dirs -sSLo $HOME/.sonar/sonar-scanner.zip https://binaries.sonarsource.com/Distribution/sonar-scanner-cli/sonar-scanner-cli-$SONAR_SCANNER_VERSION-linux.zip
          - unzip -o $HOME/.sonar/sonar-scanner.zip -d $HOME/.sonar/
          - export PATH=$SONAR_SCANNER_HOME/bin:$PATH
          - curl --create-dirs -sSLo $HOME/.sonar/build-wrapper-linux-x86.zip https://sonarcloud.io/static/cpp/build-wrapper-linux-x86.zip
          - apk --no-cache add unzip curl zlib 
          - unzip -o $HOME/.sonar/build-wrapper-linux-x86.zip -d $HOME/.sonar/
          - export PATH=$HOME/.sonar/build-wrapper-linux-x86:$PATH
          - sed -i -E 's/[A-Z]:\\.*\\workspace_[^\\]+\\[^\\]+\\/..\//' Debug/makefile
          - build-wrapper-linux-x86-64 --out-dir $BW_OUTPUT make -C Debug all
          - sonar-scanner -Dsonar.cfamily.build-wrapper-output=$BW_OUTPUT
          

pipelines:                 # More info here: https://confluence.atlassian.com/bitbucket/configure-bitbucket-pipelines-yml-792298910.html
  branches:
    feature/DEVOPS-17-modify-confi-file-of-pipeline-:
      - step: *build-test-sonarcloud
  pull-requests:
    '**':
      - step: *build-test-sonarcloud

Hi I am using sonarcloud for bitbucket pipelines in bitbucket cloud for running an automated analysis for embedded c project …
The pipeline for compiling it is already working so the compiler is correct …
it seems the sonar part is broken

You can see my yaml file here

image: 
  name: lpodkalicki/stm32-toolchain
  username: simogaspa84
  password: ***************
  email: simogaspa84@gmail.com

clone:
  depth: full              # SonarCloud scanner needs the full history to assign issues properly

definitions:
  caches:
    sonar: ~/.sonar/cache  # Caching SonarCloud artifacts will speed up your build
  steps:
    - step: &build-test-sonarcloud
        name: Build, test and analyze on SonarCloud
        caches:
          - sonar
        script:
          - apk --no-cache add unzip curl zlib 
          - export SONAR_SCANNER_VERSION=4.4.0.2170
          - export SONAR_SCANNER_HOME=$HOME/.sonar/sonar-scanner-$SONAR_SCANNER_VERSION-linux
          - export LD_LIBRARY_PATH="/lib;/usr/lib"
          - export BW_OUTPUT=$HOME/.sonar/bw-output
          - mkdir -p $BW_OUTPUT
          - curl --create-dirs -sSLo $HOME/.sonar/sonar-scanner.zip https://binaries.sonarsource.com/Distribution/sonar-scanner-cli/sonar-scanner-cli-$SONAR_SCANNER_VERSION-linux.zip
          - unzip -o $HOME/.sonar/sonar-scanner.zip -d $HOME/.sonar/
          - export PATH=$SONAR_SCANNER_HOME/bin:$PATH
          - curl --create-dirs -sSLo $HOME/.sonar/build-wrapper-linux-x86.zip https://sonarcloud.io/static/cpp/build-wrapper-linux-x86.zip
          - apk --no-cache add unzip curl zlib 
          - unzip -o $HOME/.sonar/build-wrapper-linux-x86.zip -d $HOME/.sonar/
          - export PATH=$HOME/.sonar/build-wrapper-linux-x86:$PATH
          - sed -i -E 's/[A-Z]:\\.*\\workspace_[^\\]+\\[^\\]+\\/..\//' Debug/makefile
          - build-wrapper-linux-x86-64 --out-dir $BW_OUTPUT make -C Debug all
          - sonar-scanner -Dsonar.cfamily.build-wrapper-output=$BW_OUTPUT
          

pipelines:                 # More info here: https://confluence.atlassian.com/bitbucket/configure-bitbucket-pipelines-yml-792298910.html
  branches:
    feature/DEVOPS-17-modify-confi-file-of-pipeline-:
      - step: *build-test-sonarcloud
  pull-requests:
    '**':
      - step: *build-test-sonarcloud

but the automatic compilation fails and I got this . …

Can you please help me to understand the segmentation fault issue ?

Thanks a lot

Hi,

From what I can see, you posted approximately the same thing twice within 7 hours. Please don’t do that. You can bump your thread, but please don’t claim twice the necessary resources by opening multiple threads. The resources for community support are limited and it responses - when they come - won’t generally be immediate.

I’ve combined your two threads here.

Beyond that, it seems from this other thread that you’ve solved the problem in this/these threads, without following up here. Again, resources are not unlimited. If you find your own solution, please follow up so that

  • people who want to help don’t spend time trying to understand your situation and respond
  • people how have the same situation can see what you did to fix it.

 
Ann

Hi Ann…
thanks for your hint…
I don’t think to have posted twice the same thing…
I have 2 different problems …
One it comes from travis ci calling sonar cloud and not working…saying one thing
The other one it comes from bitbucket pipelines calling sonar cloud…
Until now now answers from both…
But please help me to have a response about my issue …
Thanks a lot Ann…