You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
for file in *.csproj; do sed -i.backup "s/^[[:blank:]]*<ReferenceOutputAssembly>false<\/ReferenceOutputAssembly>/<ReferenceOutputAssembly>true<\/ReferenceOutputAssembly>/g" $file; rm $file.backup; done
25
+
cd $PROJECT_ROOT
26
+
- mono ~/sonar-scanner-msbuild/SonarScanner.MSBuild.exe begin /k:$SONARQUBE_PROJECT_KEY /d:sonar.host.url=$SONARQUBE_ENDPOINT_URL_PRD /d:sonar.login=$SONARQUBE_TOKEN_PRD /d:sonar.projectBaseDir=$SONARQUBE_PROJECT_BASE_DIR
27
+
- msbuild $MSBUILD_SLN_PATH
28
+
- mono ~/sonar-scanner-msbuild/SonarScanner.MSBuild.exe end /d:sonar.login=$SONARQUBE_TOKEN_PRD
29
+
triggers:
30
+
cancel_old_ci: true
31
+
expression: |
32
+
((pull_request.target eq "main" OR pull_request.target eq "dev")
33
+
AND NOT pull_request.push.changes.all match "**/*.md") OR
Copy file name to clipboardExpand all lines: CHANGELOG.md
+8-6Lines changed: 8 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,18 +6,20 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a
6
6
7
7
## Unreleased
8
8
9
-
Fixed the ROS-Unity Integration tutorial `robo_demo.launch` to be up-to-date with file paths, and updated Pick-and-Place Part 2 ROS Settings screenshot.
10
-
11
-
Add the [Close Stale Issues](https://github.com/marketplace/actions/close-stale-issues) action
12
-
13
-
Updated Pick-and-Place scripts for style conformity, updated custom msg formats and made according script and tutorial changes.
14
-
15
9
### Upgrade Notes
16
10
17
11
### Known Issues
18
12
19
13
### Added
20
14
15
+
Added Sonarqube scanners.
16
+
17
+
Fixed the ROS-Unity Integration tutorial `robo_demo.launch` to be up-to-date with file paths, and updated Pick-and-Place Part 2 ROS Settings screenshot.
18
+
19
+
Add the [Close Stale Issues](https://github.com/marketplace/actions/close-stale-issues) action
20
+
21
+
Updated Pick-and-Place scripts for style conformity, updated custom msg formats and made according script and tutorial changes.
0 commit comments