From 59e24b61969548e7ab1a4e87927b71b5c52bb89a Mon Sep 17 00:00:00 2001 From: bluesadi Date: Fri, 5 Jan 2024 04:24:39 +0000 Subject: [PATCH] Update CI and README --- .github/workflows/c-cpp.yml | 6 ++---- README.md | 6 ------ 2 files changed, 2 insertions(+), 10 deletions(-) diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/c-cpp.yml index a31be5b63..42e8179b5 100644 --- a/.github/workflows/c-cpp.yml +++ b/.github/workflows/c-cpp.yml @@ -2,9 +2,9 @@ name: C/C++ CI on: push: - branches: [ "llvm-14.0.6", "main" ] + branches: [ "main" ] pull_request: - branches: [ "llvm-14.0.6", "main" ] + branches: [ "main" ] jobs: Ubuntu: @@ -17,8 +17,6 @@ jobs: run: sudo apt install ninja-build -y - name: Install z3 run: sudo apt install libz3-dev -y - - name: Install lld - run: sudo apt install lld -y - name: git submodule update --init run: git submodule update --init - name: ./build.sh diff --git a/README.md b/README.md index a56013bd5..ee8d2b59e 100644 --- a/README.md +++ b/README.md @@ -13,12 +13,6 @@ Install z3 (required by MBAObfuscation): ``` $ sudo apt install libz3-dev ``` -(Optional) Install lld: -``` -// This is an optional depencency to speed up the linking stage when building LLVM. -// If you don't want to install this dependency, remove the line `set(LLVM_ENABLE_LLD ON)` in CMakeLists.txt -$ sudo apt install lld -``` Install Ninja and other dependencies: ``` $ sudo apt install ninja-build cmake python3 gcc g++