Trigger actions for PRs and pin the version of libcimpp #2658
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Sonar Cloud Analysis | ||
on: | ||
# Trigger analysis when pushing in master or pull requests, and when creating | ||
# a pull request. | ||
push: | ||
branches: | ||
- master | ||
pull_request: | ||
types: [opened, synchronize, reopened] | ||
jobs: | ||
sonarcloud: | ||
name: Prepare and run Sonar Scan | ||
runs-on: ubuntu-latest | ||
if: secrets.SONAR_TOKEN != '' # Skip the job if SONAR_TOKEN is not set | ||
Check failure on line 14 in .github/workflows/sonar_cloud.yaml GitHub Actions / Sonar Cloud AnalysisInvalid workflow file
|
||
container: sogno/dpsim:dev | ||
env: | ||
BUILD_WRAPPER_OUT_DIR: build_wrapper_output_directory # Directory where build-wrapper output will be placed | ||
steps: | ||
- name: Fetch repository | ||
uses: actions/checkout@v4 | ||
with: | ||
# Disabling shallow clone is recommended for improving relevancy of reporting | ||
fetch-depth: 0 | ||
- name: Setup Node 20 | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: 20 | ||
- name: Install sonar-scanner and build-wrapper | ||
uses: sonarsource/sonarcloud-github-c-cpp@v2 | ||
- name: Create Build Folder | ||
run: mkdir build | ||
- name: Setup build directory cache | ||
uses: actions/cache@v4 | ||
with: | ||
path: ${{ github.workspace }}/build | ||
key: wrapper-dir-cache-${{ github.ref }} | ||
- name: Setup sonar cache | ||
uses: actions/cache@v4 | ||
with: | ||
path: | | ||
.scannerwork | ||
sonar-cache | ||
key: sonar-cache-${{ github.ref }} | ||
- name: Configure CMake | ||
shell: bash | ||
working-directory: ${{ github.workspace }}/build | ||
run: | | ||
cmake -DCIM_VERSION=CGMES_2.4.15_16FEB2016 $GITHUB_WORKSPACE | ||
- name: Run build-wrapper | ||
run: | | ||
build-wrapper-linux-x86-64 --out-dir ${{ env.BUILD_WRAPPER_OUT_DIR }} cmake --build build/ -j $(nproc) | ||
- name: Run sonar-scanner | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | ||
run: | | ||
sonar-scanner --define sonar.cfamily.compile-commands=${{ env.BUILD_WRAPPER_OUT_DIR }}/compile_commands.json | ||
notify-missing-token: | ||
name: Notify Missing Sonar Token | ||
runs-on: ubuntu-latest | ||
needs: sonarcloud | ||
if: ${{ needs.sonarcloud.result == 'skipped' }} # Run only if sonarcloud job was skipped | ||
steps: | ||
- name: Notify Missing Token | ||
run: | | ||
echo "SonarCloud analysis was skipped because the SONAR_TOKEN secret is not set. This is likely due to the origin repository being a fork." |