Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .ci-scripts/ci-build-linux.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ CI_JSDEC="$PWD"
CI_RZ_VERSION=$2

if [ "$CI_BRANCH" != "dev" ]; then
# master branch always build against latest release of rizin
# stable branch always build against latest release of rizin
CI_RZ_VERSION=$(curl -s GET https://api.github.com/repos/rizinorg/rizin/tags\?per_page\=1 | jq -r '.[].name')
else
CI_RZ_VERSION="$CI_BRANCH"
Expand All @@ -25,7 +25,7 @@ if [ "$CI_BRANCH" == "dev" ]; then
wget -O "rizin.tar.gz" "https://github.com/rizinorg/rizin/archive/refs/heads/dev.tar.gz"
tar xf "rizin.tar.gz"
else
# master branch always build against latest release of rizin
# stable branch always build against latest release of rizin
wget -O "rizin.tar.xz" "https://github.com/rizinorg/rizin/releases/download/$CI_RZ_VERSION/rizin-src-$CI_RZ_VERSION.tar.xz"
tar xf "rizin.tar.xz"
fi
Expand Down
4 changes: 2 additions & 2 deletions .ci-scripts/ci-rizin-dl.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@

out_file = "rizin.zip"

latest = "master" if len(sys.argv) < 1 else sys.argv[1]
latest = "stable" if len(sys.argv) < 1 else sys.argv[1]

if latest != "dev":
# master branch always build against latest release of rizin
# stable branch always build against latest release of rizin
tags = None
with urllib.request.urlopen('https://api.github.com/repos/rizinorg/rizin/tags?per_page=1') as f:
tags = json.load(f)
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-plugin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: build-plugin
on:
push:
branches:
- master
- stable
- dev
pull_request:

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: "CodeQL"

on:
push:
branches: ["master"]
branches: ["stable", "dev"]
pull_request:
branches: ["master"]
branches: ["stable", "dev"]
schedule:
- cron: "1 14 * * 5"

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/continuous-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: continuous-tests
on:
push:
branches:
- master
- stable
- dev
pull_request:

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[![License](https://img.shields.io/badge/License-BSD_3--Clause-blue.svg)](https://opensource.org/licenses/BSD-3-Clause)

![jsdec](https://raw.githubusercontent.com/rizinorg/jsdec/master/.github/logo.png)
![jsdec](https://raw.githubusercontent.com/rizinorg/jsdec/stable/.github/logo.png)

Converts asm to pseudo-C code.

Expand Down Expand Up @@ -87,5 +87,5 @@ e scr.color | enables syntax colors.

# Developing on jsdec

[Read DEVELOPERS.md](https://github.com/rizinorg/jsdec/blob/master/DEVELOPERS.md)
[Read DEVELOPERS.md](https://github.com/rizinorg/jsdec/blob/stable/DEVELOPERS.md)

Loading