1
0
mirror of https://github.com/facebook/proxygen.git synced 2025-08-08 18:02:05 +03:00

disable --allow-system-packages for generate-github-actions

Summary: Fix github actions builds for projects depending on zstd

Reviewed By: wez

Differential Revision: D26743251

fbshipit-source-id: a3fd8a14750227d025bff763cca8aa683b26a422
This commit is contained in:
Luca Niccolini
2021-03-02 16:29:58 -08:00
committed by Facebook GitHub Bot
parent ec7ff236cb
commit 8092a3a1a1
3 changed files with 98 additions and 105 deletions

View File

@@ -851,8 +851,6 @@ jobs:
)
getdeps = f"{py3} build/fbcode_builder/getdeps.py"
if not args.disallow_system_packages:
getdeps += " --allow-system-packages"
out.write(" build:\n")
out.write(" runs-on: %s\n" % runs_on)
@@ -878,11 +876,6 @@ jobs:
# that we want it to use them!
out.write(" - name: Fix Git config\n")
out.write(" run: git config --system core.longpaths true\n")
elif not args.disallow_system_packages:
out.write(" - name: Install system deps\n")
out.write(
f" run: sudo {getdeps} install-system-deps --recursive {manifest.name}\n"
)
projects = loader.manifests_in_dependency_order()