diff --git a/.builds/freebsd.yml b/.builds/freebsd.yml index 67989f50..6a51ceff 100644 --- a/.builds/freebsd.yml +++ b/.builds/freebsd.yml @@ -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: diff --git a/.builds/openbsd.yml b/.builds/openbsd.yml index 6f3142e1..8366634c 100644 --- a/.builds/openbsd.yml +++ b/.builds/openbsd.yml @@ -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: diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fc1119fa..b196c8a2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 )" diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index f6951851..1efb1557 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -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 diff --git a/.travis.yml b/.travis.yml index 6eeb68a2..19d0c64c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -47,7 +47,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 diff --git a/scripts/Dockerfile.arch b/scripts/Dockerfile.arch index 29d2b978..46b9ff18 100644 --- a/scripts/Dockerfile.arch +++ b/scripts/Dockerfile.arch @@ -5,7 +5,7 @@ RUN pacman --noconfirm -Syu RUN pacman --noconfirm -S git gcc make cmake pkg-config flex bison meson ninja qt5-base RUN cd /root && \ - git clone --recurse-submodules --depth 1 https://github.com/rizinorg/rizin && \ + git clone --recurse-submodules --depth 1 -b stable https://github.com/rizinorg/rizin && \ cd rizin && \ meson build --prefix=/usr && \ ninja -C build && \ diff --git a/scripts/Dockerfile.buster b/scripts/Dockerfile.buster index 375d6194..ea8f550c 100644 --- a/scripts/Dockerfile.buster +++ b/scripts/Dockerfile.buster @@ -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 --recurse-submodules --depth 1 https://github.com/rizinorg/rizin && \ + git clone --recurse-submodules --depth 1 https://github.com/rizinorg/rizin -b stable && \ cd rizin && \ meson build --prefix=/usr && \ ninja -C build && \