Skip to content

Commit

Permalink
Update the reports to the current project name
Browse files Browse the repository at this point in the history
  • Loading branch information
jbachorik committed Dec 8, 2023
1 parent e2d6f52 commit 9e76c6d
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions .github/scripts/cppcheck-gh.xslt
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
<xsl:value-of select="concat(location/@file, '#L', location/@line)"/>
</xsl:variable>
<li>
<a href="https://github.com/DataDog/java-profiler-library/blob/target_branch/{$source}">
<a href="https://github.com/DataDog/java-profiler/blob/target_branch/{$source}">
<xsl:value-of select="@msg"/>
</a>
</li>
Expand All @@ -55,7 +55,7 @@
<xsl:value-of select="concat(location/@file, '#L', location/@line)"/>
</xsl:variable>
<li>
<a href="https://github.com/DataDog/java-profiler-library/blob/target_branch/{$source}">
<a href="https://github.com/DataDog/java-profiler/blob/target_branch/{$source}">
<xsl:value-of select="@msg"/>
</a>
</li>
Expand All @@ -74,7 +74,7 @@
<xsl:value-of select="concat(location/@file, '#L', location/@line)"/>
</xsl:variable>
<li>
<a href="https://github.com/DataDog/java-profiler-library/blob/target_branch/{$source}">
<a href="https://github.com/DataDog/java-profiler/blob/target_branch/{$source}">
<xsl:value-of select="@msg"/>
</a>
</li>
Expand All @@ -99,7 +99,7 @@
<tr>
<td>
<div class="title"><xsl:value-of select="@msg"/></div>
<a href="https://github.com/DataDog/java-profiler-library/blob/target_branch/{$source}">
<a href="https://github.com/DataDog/java-profiler/blob/target_branch/{$source}">
<xsl:value-of select="$source"/>
</a>
</td>
Expand Down
8 changes: 4 additions & 4 deletions .github/scripts/cppcheck-html.xslt
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
<xsl:value-of select="concat(location/@file, '#L', location/@line)"/>
</xsl:variable>
<li>
<a href="https://github.com/DataDog/java-profiler-library/blob/target_branch/{$source}">
<a href="https://github.com/DataDog/java-profiler/blob/target_branch/{$source}">
<xsl:value-of select="@msg"/>
</a>
</li>
Expand All @@ -44,7 +44,7 @@
<xsl:value-of select="concat(location/@file, '#L', location/@line)"/>
</xsl:variable>
<li>
<a href="https://github.com/DataDog/java-profiler-library/blob/target_branch/{$source}">
<a href="https://github.com/DataDog/java-profiler/blob/target_branch/{$source}">
<xsl:value-of select="@msg"/>
</a>
</li>
Expand All @@ -58,7 +58,7 @@
<xsl:value-of select="concat(location/@file, '#L', location/@line)"/>
</xsl:variable>
<li>
<a href="https://github.com/DataDog/java-profiler-library/blob/target_branch/{$source}">
<a href="https://github.com/DataDog/java-profiler/blob/target_branch/{$source}">
<xsl:value-of select="@msg"/>
</a>
</li>
Expand All @@ -76,7 +76,7 @@
<tr>
<td>
<div class="title"><xsl:value-of select="@msg"/></div>
<a href="https://github.com/DataDog/java-profiler-library/blob/target_branch/{$source}">
<a href="https://github.com/DataDog/java-profiler/blob/target_branch/{$source}">
<xsl:value-of select="$source"/>
</a>
</td>
Expand Down
2 changes: 1 addition & 1 deletion .github/scripts/python_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def create_scanbuild_code_links(soup, target_branch):
target = element
elif 'Q' in clz and target is not None and target.text != 'Function/Method':
line = element.text
link = soup.new_tag('a', href=f'https://github.com/DataDog/java-profiler-library/blob/{target_branch}/ddprof-lib/src/main/cpp/{src}#L{line}')
link = soup.new_tag('a', href=f'https://github.com/DataDog/java-profiler/blob/{target_branch}/ddprof-lib/src/main/cpp/{src}#L{line}')
link.string = src
target.clear()
target.append(link)
Expand Down

0 comments on commit 9e76c6d

Please sign in to comment.