From 0beecda38e56ba9c9002d6134b95841ee7b82a06 Mon Sep 17 00:00:00 2001 From: Joe Abraham Date: Mon, 28 Oct 2024 20:47:45 +0530 Subject: [PATCH] ss --- .github/workflows/linux-build.yml | 38 ------------------------------- 1 file changed, 38 deletions(-) diff --git a/.github/workflows/linux-build.yml b/.github/workflows/linux-build.yml index 41b577028e824..b4e26478702bf 100644 --- a/.github/workflows/linux-build.yml +++ b/.github/workflows/linux-build.yml @@ -88,44 +88,6 @@ jobs: mv ./${MINIO_BINARY} /usr/local/bin/ fi - - name: Install Proxygen - run: | - FB_OS_VERSION="v2024.05.20.00" - PROXYGEN_BINARY="proxygen.tar.gz" - if [ ! -f /usr/local/bin/proxygen ]; then - wget https://github.com/facebook/proxygen/archive/refs/tags/${FB_OS_VERSION}.tar.gz -O ${PROXYGEN_BINARY} - - # Extract the archive - tar -xzf ${PROXYGEN_BINARY} - - # Check the actual directory name after extraction - DIR_NAME=$(tar -tf ${PROXYGEN_BINARY} | head -1 | cut -f1 -d"/") - - # Verify that the directory exists before proceeding - if [ -d "${DIR_NAME}" ]; then - cd ${DIR_NAME} - - # Build the project (adjust the build command as necessary) - if [ -f "./build.sh" ]; then - ./build.sh - else - echo "build.sh not found, adjust the build command as needed." - exit 1 - fi - - # Make the binary executable and move to /usr/local/bin - chmod +x ./proxygen - mv ./proxygen /usr/local/bin/ - - # Clean up - cd .. - rm -rf ${DIR_NAME} ${PROXYGEN_BINARY} - else - echo "Directory ${DIR_NAME} not found after extraction." - exit 1 - fi - fi - - uses: assignUser/stash/restore@v1 with: path: '${{ env.CCACHE_DIR }}'