Skip to content

Commit

Permalink
test: test with projectBaseDir
Browse files Browse the repository at this point in the history
  • Loading branch information
chris-tier4 committed Oct 2, 2024
1 parent 0bee617 commit 2ed3c5e
Show file tree
Hide file tree
Showing 2 changed files with 58 additions and 7 deletions.
60 changes: 54 additions & 6 deletions .github/workflows/BuildAndRun.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,19 +54,67 @@ jobs:
run: |
echo package_list=$(colcon list --names-only | tr '\n' ' ') >> $GITHUB_OUTPUT
- name: Show target packages
run: |
echo "Target packages: ${{ steps.list_packages.outputs.package_list }}"
# - name: Show target packages
# run: |
# echo "Target packages: ${{ steps.list_packages.outputs.package_list }}"

# - name: Install dependencies
# run: |
# vcs import src < src/scenario_simulator_v2/dependency_${{ matrix.rosdistro }}.repos

# - name: Resolve rosdep and install colcon mixin
# run: |
# apt-get update
# apt-get install -y python3-pip python3-colcon-lcov-result lcov
# rosdep update --include-eol-distros
# rosdep install -iy --from-paths src --rosdistro ${{ matrix.rosdistro }}
# colcon mixin add default https://raw.githubusercontent.com/colcon/colcon-mixin-repository/master/index.yaml
# colcon mixin update default
# shell: bash

# - name: Build packages
# run: |
# source /opt/ros/${{ matrix.rosdistro }}/setup.bash
# colcon build --symlink-install --cmake-args -DCMAKE_BUILD_TYPE=Release -DBUILD_CPP_MOCK_SCENARIOS=ON -DBUILD_TESTING=true -DCMAKE_CXX_FLAGS='-fprofile-arcs -ftest-coverage' -DCMAKE_C_FLAGS='-fprofile-arcs -ftest-coverage' --packages-up-to ${{ steps.list_packages.outputs.package_list }}
# shell: bash

- name: Debug
if: ${{ always() }}
uses: mxschmitt/action-tmate@v3
# - name: Colcon test
# run: |
# source /opt/ros/${{ matrix.rosdistro }}/setup.bash
# source install/local_setup.bash
# colcon test --event-handlers console_cohesion+ --packages-select ${{ steps.list_packages.outputs.package_list }}
# colcon lcov-result --packages-select ${{ steps.list_packages.outputs.package_list }}
# shell: bash

# - name: Show test result
# if: always()
# run: |
# source /opt/ros/${{ matrix.rosdistro }}/setup.bash
# source install/local_setup.bash
# colcon test-result --verbose
# shell: bash

# - name: Scenario test
# run: |
# source install/setup.bash
# source install/local_setup.bash
# ./src/scenario_simulator_v2/.github/workflows/workflow.sh ./src/scenario_simulator_v2/test_runner/scenario_test_runner/config/workflow.txt global_frame_rate:=20
# shell: bash

# - name: Upload Lcov result
# uses: actions/upload-artifact@v4
# with:
# name: lcov
# path: lcov
# retention-days: 1

- name: Run SonarCloud scan
uses: SonarSource/sonarcloud-github-action@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
with:
projectBaseDir: ./src/scenario_simulator_v2

# - name: Basic test
# run: |
Expand Down
5 changes: 4 additions & 1 deletion sonar-project.properties
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,12 @@ sonar.organization=tier4
sonar.projectName=scenario_simulator_v2
sonar.projectVersion=1.0

sonar.sources=**/src/**/*
sonar.sources=.
sonar.inclusions=**/src/**/*.cpp
sonar.exclusions=**/test/**

# Encoding of the source code. Default is default system encoding
sonar.sourceEncoding=UTF-8

# Path to the gcov coverage reports
sonar.cfamily.gcov.reportsPath=/lcov/total_coverage.info

0 comments on commit 2ed3c5e

Please sign in to comment.