mirror of
https://github.com/rizinorg/cutter.git
synced 2024-11-23 04:49:49 +00:00
Revert Temporary Changes (#2496)
This commit is contained in:
parent
7541c8910d
commit
822e377383
@ -15,11 +15,6 @@ environment:
|
||||
PACKAGE_NAME: cutter-git-x64.Windows
|
||||
|
||||
install:
|
||||
- ps: $fileContent = "-----BEGIN RSA PRIVATE KEY-----`n"
|
||||
- ps: $fileContent += $env:priv_key.Replace(' ', "`n")
|
||||
- ps: $fileContent += "`n-----END RSA PRIVATE KEY-----`n"
|
||||
- ps: Set-Content $env:userprofile\.ssh\id_rsa $fileContent
|
||||
# --
|
||||
- ps: $env:path = ($env:path -split ";").Where({!($_ -like "*Microsoft SQL Server*")}) -join ";"
|
||||
- cmd: C:\msys64\usr\bin\bash -lc "cd $APPVEYOR_BUILD_FOLDER && scripts/fetch_deps.sh"
|
||||
- cmd: set "CUTTER_DEPS=%APPVEYOR_BUILD_FOLDER%\cutter-deps"
|
||||
|
2
.github/workflows/ccpp.yml
vendored
2
.github/workflows/ccpp.yml
vendored
@ -29,7 +29,6 @@ jobs:
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
with:
|
||||
token: ${{ secrets.RIZIN_TOKEN }} # TODO: remove when the repo is public
|
||||
submodules: recursive
|
||||
persist-credentials: false
|
||||
- name: apt dependencies
|
||||
@ -86,7 +85,6 @@ jobs:
|
||||
export PKG_CONFIG_PATH="$CUTTER_DEPS_PYTHON_PREFIX/lib/pkgconfig:${PKG_CONFIG_PATH:-}"
|
||||
export LD_LIBRARY_PATH="`llvm-config --libdir`:$LD_LIBRARY_PATH"
|
||||
fi
|
||||
set -euo pipefail #TODO: move to top once cutter-deps doesn't fail
|
||||
if [[ "${{ matrix.cc-override }}" != "default" ]]
|
||||
then
|
||||
export CC="${{matrix.cc-override}}"
|
||||
|
4
.gitmodules
vendored
4
.gitmodules
vendored
@ -1,6 +1,6 @@
|
||||
[submodule "rizin"]
|
||||
path = rizin
|
||||
url = git@github.com:rizinorg/rizin
|
||||
url = https://github.com/rizinorg/rizin
|
||||
[submodule "src/translations"]
|
||||
path = src/translations
|
||||
url = git@github.com:rizinorg/cutter-translations
|
||||
url = https://github.com/rizinorg/cutter-translations
|
||||
|
2
dist/CMakeLists.txt
vendored
2
dist/CMakeLists.txt
vendored
@ -84,7 +84,7 @@ if(CUTTER_PACKAGE_RZ_GHIDRA)
|
||||
# That way rz-ghidra build process is the same as with any other external plugin built against
|
||||
# installed Cutter.
|
||||
ExternalProject_Add(rz-ghidra
|
||||
GIT_REPOSITORY git@github.com:rizinorg/rz-ghidra
|
||||
GIT_REPOSITORY https://github.com/rizinorg/rz-ghidra
|
||||
GIT_TAG master
|
||||
CONFIGURE_COMMAND ""
|
||||
BUILD_COMMAND ""
|
||||
|
@ -7,10 +7,9 @@ SCRIPTPATH=$(realpath "$(dirname "${BASH_SOURCE[0]}")")
|
||||
cd "$SCRIPTPATH/.."
|
||||
|
||||
if [[ ! -d rz-ghidra ]]; then
|
||||
# remove depth, branch and uncomment lines bellow to use specifc commit
|
||||
# remove depth, branch and uncomment lines below to use specifc commit
|
||||
|
||||
git clone --recurse-submodules git@github.com:rizinorg/rz-ghidra.git --depth 1 --branch master || exit 1
|
||||
# git clone --recurse-submodules https://github.com/rizinorg/rz-ghidra.git --depth 1 --branch master || exit 1
|
||||
git clone --recurse-submodules https://github.com/rizinorg/rz-ghidra.git --depth 1 --branch master || exit 1
|
||||
|
||||
#pushd rz-ghidra
|
||||
#git checkout --recurse-submodules 5e845f4b50e8559bd51af03b22b6586e8cc5c35c
|
||||
|
Loading…
Reference in New Issue
Block a user