Skip to content

Commit

Permalink
Fix code scanning for C++ repos (#58)
Browse files Browse the repository at this point in the history
C++ repos were misconfigured for python scanning. This results in scan
failures since the C++ repos do not contain python code.
  • Loading branch information
gregmedd authored Jun 19, 2024
1 parent c9a6e46 commit fa49c94
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions otterdog/eclipse-uprotocol.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -156,8 +156,8 @@ orgs.newOrg('eclipse-uprotocol') {
orgs.newRepo('up-cpp') {
allow_merge_commit: true,
allow_update_branch: false,
code_scanning_default_languages+: [
"python"
code_scanning_default_languages: [
"c-cpp"
],
code_scanning_default_setup_enabled: true,
delete_branch_on_merge: false,
Expand Down Expand Up @@ -398,6 +398,10 @@ orgs.newOrg('eclipse-uprotocol') {
},
orgs.newRepo('up-transport-vsomeip-cpp') {
allow_update_branch: false,
code_scanning_default_languages: [
"c-cpp"
],
code_scanning_default_setup_enabled: true,
description: "C++ uPClient for vsomeip (SOME/IP)",
topics+: [
"cpp",
Expand Down Expand Up @@ -431,6 +435,9 @@ orgs.newOrg('eclipse-uprotocol') {
},
orgs.newRepo('up-transport-zenoh-cpp') {
allow_update_branch: false,
code_scanning_default_languages: [
"c-cpp"
],
code_scanning_default_setup_enabled: true,
description: "C++ client library to connect to the zenoh implementation of uProtocol",
topics+: [
Expand Down Expand Up @@ -488,6 +495,10 @@ orgs.newOrg('eclipse-uprotocol') {
},
orgs.newRepo('up-zenoh-example-cpp') {
allow_update_branch: false,
code_scanning_default_languages: [
"c-cpp"
],
code_scanning_default_setup_enabled: true,
description: "C++ Example application and service that utilizes up-transport-zenoh-cpp",
topics+: [
"cpp",
Expand Down

0 comments on commit fa49c94

Please sign in to comment.