Skip to content

Commit

Permalink
Use stable rizin
Browse files Browse the repository at this point in the history
  • Loading branch information
thestr4ng3r committed Jun 12, 2022
1 parent ded8ec2 commit e70aa0f
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .builds/freebsd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ environment:
CC: clang
HOST_CC: clang
sources:
- https://github.com/rizinorg/rizin
- https://github.com/rizinorg/rizin#stable
- https://github.com/rizinorg/rz-ghidra
- https://github.com/rizinorg/rizin-testbins
tasks:
Expand Down
2 changes: 1 addition & 1 deletion .builds/openbsd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ environment:
CXX: clang++
CC: clang
sources:
- https://github.com/rizinorg/rizin
- https://github.com/rizinorg/rizin#stable
- https://github.com/rizinorg/rz-ghidra
- https://github.com/rizinorg/rizin-testbins
tasks:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ jobs:
with:
repository: rizinorg/rizin
path: rizin
ref: stable
- name: Extract rizin version
shell: pwsh
run: echo "##[set-output name=branch;]$( python sys\\version.py )"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
pip install meson
- name: Prepare Rizin and Cutter
run: |
git clone --recursive --depth 1 https://github.com/rizinorg/rizin
git clone --recursive --depth 1 -b stable https://github.com/rizinorg/rizin
cd rizin
meson build
ninja -C build
Expand Down
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ env:

install:
- pip3 install meson
- git clone --depth 1 https://github.com/rizinorg/rizin
- git clone --depth 1 -b stable https://github.com/rizinorg/rizin
- cd rizin && mkdir build && cd build
- meson --prefix="$INSTALL_PREFIX" ..
- ninja
Expand Down
2 changes: 1 addition & 1 deletion scripts/Dockerfile.arch
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ RUN pacman --noconfirm -Syu
RUN pacman --noconfirm -S git gcc make cmake pkg-config flex bison meson ninja qt5-base qt5-svg qt5-tools

RUN cd /root && \
git clone --depth 1 https://github.com/rizinorg/rizin && \
git clone --depth 1 -b stable https://github.com/rizinorg/rizin && \
cd rizin && \
meson build --prefix=/usr && \
ninja -C build && \
Expand Down
2 changes: 1 addition & 1 deletion scripts/Dockerfile.buster
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ RUN apt-get -y install git g++ cmake pkg-config flex bison python3 python3-pip n
pip3 install meson

RUN cd /root && \
git clone --depth 1 https://github.com/rizinorg/rizin && \
git clone --depth 1 -b stable https://github.com/rizinorg/rizin && \
cd rizin && \
meson build --prefix=/usr && \
ninja -C build && \
Expand Down

0 comments on commit e70aa0f

Please sign in to comment.