Skip to content

Commit

Permalink
remove continue on error arg
Browse files Browse the repository at this point in the history
  • Loading branch information
SaikrishnaBairamoni authored Mar 4, 2024
1 parent 94bee62 commit 884b473
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/Ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,15 +43,13 @@ jobs:
sed -i '/colcon build/ s/$/ --packages-up-to $PACKAGES/' /home/carma/.ci-image/engineering_tools/code_coverage/make_with_coverage.bash
make_with_coverage.bash -m -e /opt/carma/ -o ./coverage_reports/gcov
- name: Run ROS1 C++ Tests
continue-on-error: true
run: |
source "$INIT_ENV"
cd /opt/carma/src/${{ github.event.repository.name }}
export ROS_PARALLEL_JOBS='-j4 -l4'
sed -i '/colcon test/ s/$/ --packages-above $PACKAGES/' /home/carma/.ci-image/engineering_tools/code_coverage/make_with_coverage.bash
make_with_coverage.bash -t -e /opt/carma/ -o ./coverage_reports/gcov
- name: Build ROS2
continue-on-error: true
run: |
source "$INIT_ENV"
source "$ROS_2_ENV"
Expand All @@ -62,7 +60,6 @@ jobs:
sed -i '/colcon build/ s/$/ --packages-up-to $PACKAGES/' /home/carma/.ci-image/engineering_tools/code_coverage/make_with_coverage.bash
make_with_coverage.bash -m -e /opt/carma/ -o ./coverage_reports/gcov
- name: Run ROS2 C++ Tests
continue-on-error: true
run: |
source "$INIT_ENV"
source "$ROS_2_ENV"
Expand All @@ -87,4 +84,4 @@ jobs:
uses: usdot-fhwa-stol/actions/sonar-scanner@main
with:
sonar-token: ${{ secrets.SONAR_TOKEN }}
working-dir: "/opt/carma/src/${{ github.event.repository.name }}"
working-dir: "/opt/carma/src/${{ github.event.repository.name }}"

0 comments on commit 884b473

Please sign in to comment.