Skip to content

Commit

Permalink
[Temp]
Browse files Browse the repository at this point in the history
  • Loading branch information
Joe-Abraham committed Sep 30, 2024
1 parent 87b94c1 commit 62dd3a7
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/linux-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,22 @@ jobs:
mv ./${MINIO_BINARY} /usr/local/bin/
fi
- name: Install Proxygen
run: |
FB_OS_VERSION="v2024.05.20.00"
PROXYGEN_BINARY="proxygen-${FB_OS_VERSION}.tar.gz"
if [ ! -f /usr/local/bin/${PROXYGEN_BINARY} ]; then
wget https://github.com/facebook/proxygen/archive/refs/tags/${FB_OS_VERSION}.tar.gz -O ${PROXYGEN_BINARY}
tar -xzf ${PROXYGEN_BINARY}
cd proxygen-${FB_OS_VERSION}
./build.sh # Assumes there's a build script or replace with the appropriate build command
chmod +x ./proxygen-${FB_OS_VERSION}
mv ./proxygen-${FB_OS_VERSION} /usr/local/bin/
cd ..
rm -rf proxygen-${FB_OS_VERSION} ${PROXYGEN_BINARY}
fi
- uses: assignUser/stash/restore@v1
with:
path: '${{ env.CCACHE_DIR }}'
Expand Down

0 comments on commit 62dd3a7

Please sign in to comment.