Skip to content

Commit 81090e6

Browse files
committed
Use Rizin v0.3.0
1 parent cf557ff commit 81090e6

File tree

7 files changed

+7
-6
lines changed

7 files changed

+7
-6
lines changed

.builds/freebsd.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ environment:
1313
CC: clang
1414
HOST_CC: clang
1515
sources:
16-
- https://github.com/rizinorg/rizin
16+
- https://github.com/rizinorg/rizin#v0.3.0
1717
- https://github.com/rizinorg/rz-ghidra
1818
- https://github.com/rizinorg/rizin-testbins
1919
tasks:

.builds/openbsd.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ environment:
1111
CXX: clang++
1212
CC: clang
1313
sources:
14-
- https://github.com/rizinorg/rizin
14+
- https://github.com/rizinorg/rizin#v0.3.0
1515
- https://github.com/rizinorg/rz-ghidra
1616
- https://github.com/rizinorg/rizin-testbins
1717
tasks:

.github/workflows/ci.yml

+1
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ jobs:
5656
with:
5757
repository: rizinorg/rizin
5858
path: rizin
59+
ref: v0.3.0
5960
- name: Extract rizin version
6061
shell: pwsh
6162
run: echo "##[set-output name=branch;]$( python sys\\version.py )"

.github/workflows/codeql-analysis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
pip install meson
4545
- name: Prepare Rizin and Cutter
4646
run: |
47-
git clone --recursive --depth 1 https://github.com/rizinorg/rizin
47+
git clone --recursive --depth 1 -b stable https://github.com/rizinorg/rizin
4848
cd rizin
4949
meson build
5050
ninja -C build

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ env:
4747

4848
install:
4949
- pip3 install meson
50-
- git clone --depth 1 https://github.com/rizinorg/rizin
50+
- git clone --depth 1 -b v0.3.0 https://github.com/rizinorg/rizin
5151
- cd rizin && mkdir build && cd build
5252
- meson --prefix="$INSTALL_PREFIX" ..
5353
- ninja

scripts/Dockerfile.arch

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ RUN pacman --noconfirm -Syu
55
RUN pacman --noconfirm -S git gcc make cmake pkg-config flex bison meson ninja qt5-base
66

77
RUN cd /root && \
8-
git clone --recurse-submodules --depth 1 https://github.com/rizinorg/rizin && \
8+
git clone --recurse-submodules --depth 1 -b v0.3.0 https://github.com/rizinorg/rizin && \
99
cd rizin && \
1010
meson build --prefix=/usr && \
1111
ninja -C build && \

scripts/Dockerfile.buster

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ RUN apt-get -y install git g++ cmake pkg-config flex bison python3 python3-pip n
66
pip3 install meson
77

88
RUN cd /root && \
9-
git clone --recurse-submodules --depth 1 https://github.com/rizinorg/rizin && \
9+
git clone --recurse-submodules --depth 1 https://github.com/rizinorg/rizin -b v0.3.0 && \
1010
cd rizin && \
1111
meson build --prefix=/usr && \
1212
ninja -C build && \

0 commit comments

Comments
 (0)