Skip to content

Commit

Permalink
[RELEASE 818096679999d605925941580f8598aa383b1a38] Sping Insight vers…
Browse files Browse the repository at this point in the history
…ion.
  • Loading branch information
antony-jr committed Jun 1, 2021
1 parent 5a4ff55 commit b254743
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 7 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ jobs:
runs-on: ubuntu-16.04
outputs:
deploy: ${{ steps.check.outputs.check }}
release_tag: ${{ steps.check.outputs.short_check }}
steps:
- uses: actions/checkout@v2

Expand All @@ -28,6 +29,8 @@ jobs:
cat /tmp/tags.txt
result=$(python3 scripts/check.py "$(git log -1 --pretty=%B)" "/tmp/tags.txt")
echo "::set-output name=check::$result"
short_result=$(echo $result | head -c 7)
echo "::set-output name=short_check::$short_result"
BuildAndDeploy:
name: "Build And Deploy"
runs-on: ubuntu-16.04
Expand Down Expand Up @@ -207,8 +210,8 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ needs.Check.outputs.deploy }}
release_name: Release ${{ needs.Check.outputs.deploy }}
tag_name: ${{ needs.Check.outputs.release_tag }}
release_name: Release ${{ needs.Check.outputs.release_tag }}
body_path: ./release_notes/${{ needs.Check.outputs.deploy }}.md
draft: false
prerelease: false
Expand Down
23 changes: 18 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,18 +20,31 @@ this can even run in a live boot **without installing anything**, Have fun!
</tr>
<tr>
<td >
<a href="https://github.com/antony-jr/insight/releases/download/continuous/Insight-90f2e23-x86_64.AppImage">
<img src="https://img.shields.io/badge/Download-Insight--90f2e23--x86--64.AppImage-green.svg?longCache=true&style=for-the-badge" alt="Download" / >
<a href="https://github.com/antony-jr/insight/releases/download/8180966/Insight-x86_64-pc-linux-gnu-8180966-x86_64.AppImage">
<img src="https://img.shields.io/badge/DOWNLOAD-Insight%20(Target%20x86__64)-green" alt="Download" / >
</a>
</td>
<td>
<pre>
$ chmod +x Insight-90f2e23-x86_64.AppImage
$ ./Insight-90f2e23-x86_64.AppImage
$ chmod +x Insight-x86_64-pc-linux-gnu-8180966-x86_64.AppImage
$ ./Insight-x86_64-pc-linux-gnu-8180966-x86_64.AppImage
</pre>
</td>
</tr>
</table>
<tr>
<td >
<a href="https://github.com/antony-jr/insight/releases/download/8180966/Insight-arm-linux-gnueabi-8180966-x86_64.AppImage">
<img src="https://img.shields.io/badge/DOWNLOAD-Insight%20(Target%20ARM)-green" alt="Download" / >
</a>
</td>
<td>
<pre>
$ chmod +x Insight-arm-linux-gnueabi-8180966-x86_64.AppImage
$ ./Insight-arm-linux-gnueabi-8180966-x86_64.AppImage
</pre>
</td>
</tr>
</table>
</p>

<p align=center>
Expand Down
18 changes: 18 additions & 0 deletions release_notes/818096679999d605925941580f8598aa383b1a38.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Insight 🐅 818096679999d605925941580f8598aa383b1a38 🐅

This release is after a long time since I've spent some time migrating from Travis-CI and also Ubuntu Trusty.
I'm using Ubuntu Xenial for now but it seems it will be dropped soon but I will stick with it for a while.

# Change Log (Upstream)

**Upgrade submodule, sync patches and code**

Function iterate_over_breakpoints does not exist anymore in gdb.
Function all_tracepoints now returns a tracepoint_range iterator.

* gdbtk/generic/gdbtk-bp.c (gdb_find_bp_at_addr): Use
all_breakpoints_safe.
(gdb_find_bp_at_line): Likewise.
(get_point_list): Likewise.
(gdbtk_delete_all_breakpoints): Likewise.
(tracepoint_exists): Use iterator instead of vector.

0 comments on commit b254743

Please sign in to comment.